Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用minifiedjs更新元素文本的正确方法是什么?
例如
<a class="myRef">Old text</a>
我试过合乎逻辑:
$('.myRef').text('New text');
但它不起作用。
http://minifiedjs.com/docs/howto.html#html_text
$('.myRef').fill("My new text");
我从文档中得到它。
您可以使用该fill方法替换现有的文本值。
fill
$('.myRef').fill("New Text Value");
或者您可以使用该add方法将文本附加到现有文本。
add
$('.myRef').add("Append Text");
(该text方法返回列表中所有节点的连接文本内容。)
text
这个How To 列表有助于学习如何使用 minifiedjs。