jquery替換網頁body中所有的“黑龍江”為“北京”,“黑龍江”可能是在不同的標簽,不同的
中,請問如何寫代碼?需要完整代碼,謝謝了! <!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
function replaceStr(){
// $('body')[0].innerHTML = $('body')[0].innerHTML.replace(/\黑龍江/g,'北京');
$('body').html($('body').html().replace(/\黑龍江/g,'北京'));
}
</script>
</head>
<body>
<p>如果黑龍江您點擊我,我會消失。</p>
<p>點擊我,黑龍江我會消失。</p>
<p>也要點擊我哦。黑龍江</p>
黑龍江
<button onclick='replaceStr()'>替換</button>
</body>
</html>