當按鈕被點擊時,我需要用DR Smith替換範圍標籤中的名稱。我應該使用帶有兩個參數的替換(標記,值)函數來完成它。我該怎麼做,請幫忙。我寫了一段代碼,但它不會工作。替換javascript中的文本
<html>
<head>
<script src="q1.js" type="text/javascript"> </script>
</head>
<body>
Dear <span id="salutation">Name</span>;
<p>
It has come to our attention that your invoice
</p>
<button onclick="format()">Format</button>
</body>
</html>
js代碼
function format(){
var x = document.getElementsById('salutation')
x.innerhtml = "Dr Smith";
}
'getElementsById' - >'getElementById','innerhtml' - >'innerHTML','格式()' - >'替換( )'(儘管你還沒有使用參數) –
'format()'函數在哪裏 – Ramanlfc
我改變了它,但它仍然不會工作 – NewProgrammer7