jquery css方法获取不带单位的属性值?
1、首先定义一个 div
<div></div>
2、然后设置样式(相关课程推荐:jQuery教程)
<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相关技术文章,请访问 jQuery答疑 栏目进行学习!!
以上就是jquery css方法如何获取不带单位的属性值?的详细内容,更多请关注易知道|edz.cc其它相关文章!