2016-05-24 78 views
1

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;*/ 
    } 
    }); 

}) 
+0

'document.getElementById(「total_products」)。value(response);' – Hazonko

+2

$('#total_products')。attr('value',response) –

+0

感謝man的工作。 –

回答

2

使用此:

$('#total_products').attr('value',response); 

jQuery的ATTR文件:

http://api.jquery.com/attr/

+0

謝謝我的安塞爾 –

5

雖然上述方案是正確的,正常的方式在jQuery來做到這一點:


$('#total_products').val(response); 
+1

謝謝你的工作 –