0

如何将 javascript $.post 结果插入文本字段。下面是我的代码。但它不工作

$.post("scripts/service_getmaxPrice.php", {id:id}, function(data){
    $("#maxPrice").innerhtml.html(data);
    document.getElementById('maxPrice').value =html(data);
}); 

html代码是

<tr><td class="ttxt" style="text-align:right;">Maximum price</td><td><input type="text" id="maxPrice" class="txt" name="maxPrice" />
4

2 回答 2

3

不知道你在哪里得到了随机的代码,但在 jQuery 中它真的很简单:

$.post("scripts/service_getmaxPrice.php", {id:id}, function(data){
  $('#maxPrice').val(data);
});

如果您正在填充 div 或其他不是表单字段的内容,那么它会是$('#maxPrice').html(data)or $('#maxPrice').text(data)

于 2013-09-18T20:05:22.153 回答
0

尝试这个:

$.post("scripts/service_getmaxPrice.php", {id:id}, function(data){
    $("#maxPrice").val(data);
}); 
于 2013-09-18T20:05:36.270 回答