respose響應正常工作,但我想要做一些像$('#total_products').attr('value') = response;
但這是行不通的。爲什麼這不起作用,我該如何解決?阿賈克斯在輸入值屬性
$(document).ready(function(){
$.ajax({
type : 'post',
url : 'product_store.php',
data : {
total_products: "totalproducts"
},
success:function(response) {
$('#total_products').attr('value') = response;
/*document.getElementById("total_products").value=response;*/
}
});
})
'document.getElementById(「total_products」)。value(response);' – Hazonko
$('#total_products')。attr('value',response) –
感謝man的工作。 –