这是失败的代码:
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”。
我将其更改为与 G+ 一起使用,因为“jill”的 var 值(尽管在此示例中是静态的)会因为它是动态的而改变。
在此先感谢您的帮助!