このインライン JavaScript を控えめな 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でもありません。
私は何かを忘れましたか?