我是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
为什么会这样?
答案 0 :(得分:2)
查看源代码显示页面的原始来源,就像它来自服务器一样。
要查看生成/修改的源,请使用开发人员工具(检查元素)
至少在Chrome中就是这种情况。