私は次のように見えるものを持っています
<div id="ABCLinks"> : <span dir="ltr"><a href="www.google.com" title="GOOGLE">Google</a></span>
テキスト「:」のみを「Websites:」に置き換えようとしていますが、その周りにソースタグを追加することはありません ()。
これは私が効果なしで試したことです:
<script type="text/javascript">
$(document).ready(function() {
$("#ABCLinks").text(function () {
return $(this).text().replace(":", "Websites:");
});
});
</script>
このhtml出力を取得しています(jqueryスクリプトを自動的に埋め込むためにphpスキンを使用しています。他のjqueryスクリプトでも機能します)
<script type="text/javascript">$(document).ready(function() {
​$("#ABCLinks").text(function () {
return $(this).text().replace(":", "Websites:"); });​​​​​
});
</script>