jquery修改a标签的href链接和文字
jquery修改a标签的href链接和文字
以下修改a标签的href链接和修改文字的代码: <script type="text/javascript" src="http:/keleyi.com/keleyi/pmedia/jquery-1.9.1.min.js"></script> 原链接: <a href="http://keleyi.com" id="home_keleyi_com">柯乐义</a> 修改a标签的href链接: $('#home_keleyi_com').attr('href','http://keleyi.com'); 修改文字: $("#home_keleyi_com").text('柯乐义首页'); 修改后的链接为: <a href="http://keleyi.com" id="home_keleyi_com">柯乐义首页</a>
下面是完整代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jquery修改链接--柯乐义</title> <script type="text/javascript" src="http://keleyi.com/keleyi/pmedia/jquery-1.9.1.min.js"></script> </head> <body> jquery修改a标签的href链接和文字,先点击下面链接<br />然后点击"改变"按钮,然后点点击一次下面的链接,注意两次打开页面的不同:<br /> <a href="http://keleyi.com/a/bjac/d863921ed93d03ff.htm" id="home_keleyi_com" target="_blank">原文</a> <input type="button" value="改变" id="gb_keleyi_com" /> <script type="text/javascript"> $("#gb_keleyi_com").bind("click",function (){ $('#home_keleyi_com').attr('href','http://keleyi.com'); $("#home_keleyi_com").text('柯乐义首页');}) </script> </body> </html>
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17