这是在控制台日志中显示成功但在使用 Google 结构化数据测试工具或 G+ 共享按钮测试时失败的代码。原始值保持不变。在这种情况下,“jack”永远不会更新为“jill”。
var newName= "jill"
$("h1").attr('itemprop','name').html(newName);
这是微数据:
<body itemscope itemtype="http://schema.org/Blog">
<div style="display:none;">
<h1 itemprop="name">jack</h1>
<img itemprop="image" src="http://somehewhere.com/something.png" />
<p itemprop="description">some text</p>
</div>
如您所见,只是试图将“jack”的值更改为“jill”。