jQuery代碼Jquery的問題提交按鈕
$('#cartSubmit').click(function() {
var product_name = encodeURIComponent($('#product_name').val());
var barcode = encodeURIComponent($('#barcode').val());
var Quantity = encodeURIComponent($('#Quantity').val());
var postData = "product_name="+product_name+"&barcode="+barcode+"&Quantity"+Quantity;
$.ajax
({
type: 'POST',
url: 'http://localhost/example/index.php/cart/cartoutput',
data: postData,
success: function(html) {
//alert(html);
$('#cartDisplay').html(html);
}
});
return false;
});
查看代碼
<tr><td align="center" > <input type="submit" value="SUBMIT" id="cartSubmit"/></td> </tr>
我不能夠顯示輸出。代碼中有什麼問題
可以使用的形式還原序列化方法從jquery,從http://api.jquery.com/jQuery.post'$ .post(「test.php」,$(「#testform」)。serialize());' – Kumar
你有沒有ch在firebug ecked任何錯誤? – Rafay
在螢火蟲中沒有錯誤 – user855492