jquery css获取不带单位的属性值的方法:首先定义一个div;然后设置样式,并引入jQuery;接着使用jquery的css方法获取元素的宽度;最后使用parseInt方法去除单位即可。
本教程操作环境:windows7系统、jquery1.10.0&&css3版,该方法适用于所有品牌电脑。
推荐:《css视频教程》
jquery css方法获取不带单位的属性值
1、首先定义一个 div
<div></div>
2、然后设置样式
<style> div { width: 100px; height: 100px; } </style>
3、引入jQuery
<script src="path/to/jquery.min.js"></script>
4、使用jquery的css方法获取元素的宽度
var h = $('div').css('width'); console.log(h); //100px
5、获取的值是带单位的,使用parseInt方法去除单位即可
var nopx = parseInt(h); console.log(nopx);//100
以上是jquery css 如何获取不带单位的属性值的详细内容。更多信息请关注PHP中文网其他相关文章!