jQuery set属性与.attr()视图源不更新

时间:2015-07-08 23:09:25

标签: jquery html

我是jQuery的新手,learning关于Database.SetInitializer<YourContextClass>(null); 对象方法。

我有:

.attr()

控制台确实返回了预期值:<!doctype html> <html> <head> <meta charset="utf-8"> <title>Demo</title> </head> <body> <a href="http://jquery.com/">jQuery</a> <script src="jquery-2.1.4.js"></script> <script> $(document).ready(function() { $('a').attr('href', 'http://www.google.com'); console.log( $('a').attr('href') ); }); </script> </body> </html> 但是当我右键单击窗口以查看源元素时,锚元素仍然是:http://www.google.com

为什么会这样?

1 个答案:

答案 0 :(得分:2)

查看源代码显示页面的原始来源,就像它来自服务器一样。

要查看生成/修改的源,请使用开发人员工具(检查元素)

至少在Chrome中就是这种情况。