0
我有表中的輸入。輸入數據未定義
<tr id="1">
<th>1</th>
<th>ball</th>
<th>10euro</th>
<th><input type="text" class="input col-xs-1 sum" value="1"></th>
<th style="text-align:center;"><i class="fa fa-shopping-cart fa-2x"></i></th>
<th style="text-align:center;"><i class="fa fa-times fa-2x" id="addproduct1"></i></th>
</tr>
和文字
var data = $("#1.sum").value;
alert(data);
但是數據始終是未定義/空。我嘗試的每一種方式都是null/undefined。你能幫助我,並告訴什麼是錯的?
謝謝你,可惜還是不確定:( – BillyB
可能是:$(「#1的.sum」 ).val()而不是? – gaetanoM
現在可以工作了,非常感謝你。像一封不好的信件這樣的小事情最難: – BillyB