如果我有<span>some text</span>
,我怎麼能有這樣的:添加工具提示,其價值是一樣的跨度值
<span title="*whatever is between span tags:* some text (in this case)">some text</span>
如果我有<span>some text</span>
,我怎麼能有這樣的:添加工具提示,其價值是一樣的跨度值
<span title="*whatever is between span tags:* some text (in this case)">some text</span>
如果您正在創建一個HTML自己,那麼只需添加文本標題屬性在你生成html的時候。例如,在PHP這將是:
$text = 'some text';
<span title="<?php echo htmlspecialchars($text) ?>"><?php echo $text ?></span>
,如果你在事後通過JavaScript這樣做,那麼(使用jQuery):
$('span').each(function() {
this.attr('title', this.text());
});
$("span[title]").each(function(){$(this).attr("title",$(this).text())});
這就是我想要做的。
請注意,這隻適用於已經定義了標題屬性的''標籤。 –
@ T.Stone yup!我的例子說明這一點。 –
javascript? jQuery的? –
兩者都很好。 – TookTheRook