我是新來這一點,想不通爲什麼它不工作:的Javascript否則,如果不工作
所以我有功能:
function testResults() {
var answer = document.getElementById("myForm");
if (answer = 'James'); {
alert("Good !");
} else if (answer = 'james'); {
alert("Good !");
} else {
alert("Wrong !");
}
這裏是<form>
:
<form name="myform">
Enter your name
<input type="text" name="inputbox" value="">
<input type="button" name="button" value="Click" onClick="testResults()" >
</form>
而且它不起作用。
作業與比較,'='與'=='與'==='。 – elclanrs
代碼中的問題太多了,我相信在繼續之前應該學習更多。這裏有一個很好的資源:[MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide)PS:如果你要提交請確保它們有一個有效的ID以便於選擇;) –