我有這樣的錶行中表獲取輸入的值之後,DIV是點擊
<tr>
<th>
<input type="text" id="ismall" maxlength="2" size="2" placeholder="0">
</th>
<th>
<input type="text" id="imedium" maxlength="2" size="2" placeholder="0">
</th>
<th>
<input type="text" id="ilarge" maxlength="2" size="2" placeholder="0">
</th>
<th>
<input type="text" id="ixlarge" maxlength="2" size="2" placeholder="0">
</th>
</tr>
<tr>
<th colspan="4" style="padding: 0px">
<div class="add-to-cart" onclick="addToCart()">Add to pizza cart</div>
</th>
</tr>
</tr>
當我點擊add-to-cart
我會提醒什麼是ismall
,imedium
,ilarge
和ixlarge
裏面的數據。但我無法使用JavaScript獲得價值。
我該怎麼辦?
我的JavaScript:
function addToCart(){
alert(document.getElementById('ismall').value);
}
div ??你爲什麼不使用按鈕? – 2014-10-05 07:59:15
@BhaveshGangani讓我可以更容易地設計風格。 – 2014-10-05 08:00:47
你也可以設計風格的按鈕。爲了達到這種目的,推薦使用一個按鈕。 – 2014-10-05 08:07:54