我有一个变量,我想在我的 HTML 的特定位置显示它的值。很像 javascript 中的 +variable+。
我的设置如下:
HTML:短版:
addthis:url="http://example.com/script.php?code="
HTML 完整版:
<div class="addthis_toolbox addthis_default_style "
addthis:url="http://example.com/script.php?code="
addthis:title="An Example Title"
addthis:description="An Example Description">
<a href="http://www.addthis.com/bookmark.php?v=250&pubid={YOUR_PROFILE_ID}" class="addthis_button_compact">Share</a>
<span class="addthis_separator">|</span>
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
</div>
我想在 = 之后“打印”我的变量的值,这样会导致:
addthis:url="http://example.com/script.php?code=myVar"
我找到了 document.write 但这不起作用,因为我必须将脚本标签放在引号之间。
希望有人可以帮助我!