<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。
text