0
我有一個數學遊戲,部分工作。我需要發生的是取div的值(一個是x,另一個是y),輸入這兩個乘數的答案,能夠提交併刷新以解決另一個問題。
任何幫助將不勝感激!如何提交輸入字段的值?
http://jsfiddle.net/justinw001/Mttw6/11/
<script type="text/javascript">
function myFunction() {
score = 0;
var number = document.getElementById('inputElement').value;
questionAmount = number;
for(i = 0; i < questionAmount; i++) {
var x = Math.floor(Math.random() * 13);
var y = Math.floor(Math.random() * 13);
$('#input1').text(x);
$('#input2').text(y);
<!-- question = prompt('What is ' + x + ' * ' + y + ' = ?'); -->
question = document.getElementById('answer').value;
if(question == null || isNaN(question)) {
break;
}
if(question == x * y) {
score++;
}
}
alert('You got ' + score + ' out of ' + questionAmount + ' correct.');
}
</script>
好了,你沒有確切說明是什麼問題,但是從我所看到的,在'' HTML註釋標記不屬於那裏。您可能是指JavaScript註釋語法'/ /'。 –
我應該指定多一點,我不希望頁面刷新我想要使用提交按鈕更改問題。 – user2918151