jquery 操作大全
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 操作大全相关的知识,希望对你有一定的参考价值。
1添加属性
$("#mydiv").attr("pro1","this is val");
$(‘.img1‘).attr(‘src‘, ‘/img/1.jpg‘);
2设置样试
$("#mydiv").css("width","100px");
3操作json取值
var jsonstr="Result:{"pagecount":"5","pagesize":"5","pageindex":"1","pic":["/image/g1.jpg","/image/g2.jpg","/image/g3.jpg","/image/g4.jpg","/image/g5.jpg"]}";
var contact = JSON.parse(jsonstr);
alert(contact.pagecount);
以上是关于jquery 操作大全的主要内容,如果未能解决你的问题,请参考以下文章