前端之家收集整理的这篇文章主要介绍了
如何使用jquery更改文本,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个h1动态创建的toptitle的id,我不能更改的HTML。
它将有一个不同的
标题取决于一个
页面。现在当它是
配置文件,我想用jQuery更改为新单词。
<h1 id="toptitle">Profile</h1> // Changing only when it is Profile
// to
<h1 id="toptitle">New word</h1>
注意:如果文本是“个人资料”,请将其更改为“新单词”。
这样的东西应该做的诀窍:
$(document).ready(function() {
$('#toptitle').text(function(i,oldText) {
return oldText === 'Profil' ? 'New word' : oldText;
});
});
这只是在Profil时替换内容。请参阅jQuery API中的text
。
原文链接:https://www.f2er.com/jquery/184892.html