admin管理员组

文章数量:1346332

I was going through jQuery functions.

Lets take this as an example:

/

If you do 'Inspect Element' on your browser, you can see the height of the div changing. The height takes decimal values of pixels. How to do that with javaScript?

I was going through jQuery functions.

Lets take this as an example:

http://api.jquery./slideUp/

If you do 'Inspect Element' on your browser, you can see the height of the div changing. The height takes decimal values of pixels. How to do that with javaScript?

Share Improve this question edited May 12, 2013 at 13:38 Navneet Saini asked May 12, 2013 at 13:30 Navneet SainiNavneet Saini 9444 gold badges16 silver badges33 bronze badges 6
  • 2 How about just trying it to see? Also, please be careful with w3schools. – Pointy Commented May 12, 2013 at 13:33
  • @POinty, Thats okay! I am not talking about w3schools here. PLease help me with my doubt! – Navneet Saini Commented May 12, 2013 at 13:35
  • 1 I have done it lot's of times, i don't think it actually works tho? – iConnor Commented May 12, 2013 at 13:36
  • @Connor, How jQuery does it then? – Navneet Saini Commented May 12, 2013 at 13:38
  • When you say "in decimals", do you mean values like "100.23"? Just use such values directly in calls to .css(), .width(), etc. – Pointy Commented May 12, 2013 at 13:39
 |  Show 1 more ment

2 Answers 2

Reset to default 11

Don't look things up on W3Schools, they are a bad source. In general, when you want to know something like this, just look at the specification. Lengths are <number>s, which can include fractional values.

you can write it like this:

<script>
function auto(){
    var obj=document.getElementById("d");
    var height=parseFloat(obj.style.height);
    obj.style.height=height-10+'px';
}   

<button value="change" onclick="auto()"></button>
<div id="d" style="border:thick solid black;width:200px;height:200px;"></div>

本文标签: javascriptDoes CSS accept 39pixel39 in decimalsStack Overflow