在jquery中,可以使用attr()方法来修改指定属性的值,该方法可以设置被选元素的属性值,语法“$(selector).attr("属性名",“属性值”)”或“$(selector).attr({属性名:属性值})”。
本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。
在jquery中,可以使用attr()方法来修改指定属性的值。
attr() 方法设置或返回被选元素的属性值。根据该方法不同的参数,其工作方式也有所差异。
其中设置属性值的语法:
$(selector).attr(attribute,value) //单个属性/值对 $(selector).attr({attribute:value, attribute:value ...}) //多个属性/值对
示例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="js/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("img").attr("width","380"); }); }); </script> </head> <body> <img src="img/1.jpg" width="200" /> <br /> <button>设置图像的 width 属性</button> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="js/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("img").attr({width:"300",height:"350"}); }); }); </script> </head> <body> <img src="img/1.jpg" width="200" /> <br /> <button>设置图像的 width 和 height 属性</button> </body> </html>
【推荐学习:jQuery视频教程、web前端】
以上是jquery怎么修改指定属性的值的详细内容。更多信息请关注PHP中文网其他相关文章!