1
有2個表單元素我希望得到不同的表單數據在jquery變量上的按鈕點擊請幫助我或告訴我如何獲取數據兩個不同的 字段與獨特的按鈕,但具有相同的id和類。 或者乾脆告訴如何添加到購物車按鈕被添加到每一個產品,並將數據發送回服務器的唯一,如何獲取HTML表單按鈕與jQuery的數據點擊,但按鈕類和ID是相同的
HTML
<form method="get" id="1">
<span class="productname">Product1</span>
<span class="price">100</span>
<br> Qunatity:
<input type="text" name="txt" class="quantity" value="3" class="txti" />
<input type="submit" class="submit" value="submit" />
</form>
<form method="get" id="2">
<span id="productname">Product1</span>
<span id="price">100</span>
<br> Qunatity:
<input type="text" name="txt" class="quantity" value="30" class="txti" />
<input type="submit" class="submit" value="submit" />
</form>
代碼:
$(document).ready(function() {
$().click(function() {
var txtname = $('.productname').text();
var textprice = $('.price').text();
var quantity = $('.quantity').val();
alert(txtname + " " + textprice + " " + quantity);
});
});
if all elements will be in single <form> tag only like:
<form method="get" id="1" >
<span class="productname">Product1</span>
<span class="price">200</span>
<br>Qunatity:<input type="text" name="txt" class="quantity" value="3" class="txti"/>
<input type="submit" class="submit" value="submit" />
<span id="productname">Product2</span>
<span id="price">100</span>
<br>
Qunatity:<input type="text" name="txt" class="quantity" value="30" class="txti"/>
<input type="submit" class="submit" value="submit" />
</form>
它的工作..謝謝,但如果我把它們放在一個單獨的表格中,那麼我將如何獲取值 – Ankur
那麼html結構將如何呢?把它也放在你的問題中。 –
它的工作太我想從你1更多的幫助,你會請幫我 – Ankur