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
2 Answers
Reset to default 11Don'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
版权声明:本文标题:javascript - Does CSS accept 'pixel' in decimals? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830109a2546362.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论