gpt4 book ai didi

javascript - 我如何将 javascript $.post 结果插入文本字段

转载 作者:行者123 更新时间:2023-11-28 20:17:55 25 4
gpt4 key购买 nike

如何将 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" />

最佳答案

不确定你从哪里得到了随机的代码,但它在 jQuery 中确实非常简单:

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

如果您要填充 div 或其他非表单字段,则为 $('#maxPrice').html(data)$('#maxPrice' ).text(data) 代替。

关于javascript - 我如何将 javascript $.post 结果插入文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18881341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com