如何将此内联 javascript 更改为 Unobtrusive JavaScript?
<input type="button" value="Text1" onclick="this.value=this.value=='Text1'?'Text2':'Text1';">
谢谢!
谢谢你的回答,但它不起作用。我的代码是:
php
<input id=\"button1\" type=\"button\" value=\"Text1\">
js文件
document.getElementById('button1').onclick = function(){
this.value = this.value === 'Text1' ? 'Text2' : 'Text1';
}
或者
document.getElementById('button1').addEventListener('click', function () {
this.value = (this.value === 'Text1') ? 'Text2': 'Text1';
}, false);
我尝试了你告诉我的一切,但没有奏效!没有jQuery。
我忘记了什么吗?