工作,我有一個表:的document.getElementById不在JS
<tr>
<td><input type="text" name="remaining_quantity" id="remaining_quantity" value="<?php if(isset($quantity)) echo $quantity; ?>"/></td>
<td><input type="text" name="remaining_price" id="remaining_price" value="<?php if(isset($price)) echo $price; ?>" /></td>
<input type="button" class="check fr ml" value="Check" id="check_equation" onclick="get_full_status()" />
</tr>
我想找到的值輸入字段,因此,
function get_full_status(){
var remaining_quantity = document.getElementById('remaining_quantity').value;
var remaining_price = document.getElementById('remaining_price').value;
alert(remaining_quantity);alert(remaining_price);
}
我沒有得到實際值。如果你不明白問題,請問我。
在控制檯中是否有任何錯誤?警報返回值是什麼? – Pierfrancesco
控制檯中沒有錯誤。它警報空白。 – yank
您是否檢查過'value'屬性? *它有任何價值嗎? – haim770