首页 > 编程 > JavaScript > 正文

jQuery使用attr()方法同时设置多个属性值用法实例

2019-11-20 12:51:24
字体:
来源:转载
供稿:网友

本文实例讲述了jQuery使用attr()方法同时设置多个属性值的用法。分享给大家供大家参考。具体如下:

下面这个演示例子可通过点击按钮实现修改链接与提示的功能。

<!DOCTYPE html><html><head><script src="js/jquery.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){  $("#w3s").attr({   "href" : "//www.VeVB.COm/list/list_172_1.htm",   "title" : "VeVB.COm"  }); });});</script></head><body><p><a href="//www.VeVB.COm/list/list_172_1.htm" id="w3s">VeVB.COm</a></p><button>点此改变链接与提示</button><p>鼠标滑过链接即可看到链接与提示信息已被更改.</p></body></html>

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表