jQuery 5-1
请大家帮我看看哪里错了
请大家帮我看看哪里错了
2015-11-04
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>操作元素属性</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <h3>attr()方法设置元素属性</h3> <a href="http://127.0.0.1" id="a1">点我就变</a> <div>我改变后的地址是:<span id="tip"></span></div> <script type="text/javascript"> $("#a1").attr("href" , "www.imooc.com"); var $url = $("#a1").attr("href"); $("#tip").html($url); </script> </body> </html>
举报