我有一个product
将 codeigniter 函数结果输出到 input 的输入price
。
当前语法(如下)失败并出现错误:
$("#price").value is not a function
我的观点 javascript 函数语法是:
<script type="text/javascript">
$("#product").change(function () {
//get the value of the select when it changes
var value = $("#product").val()
//make an ajax request posting it to your controller
$.post('sales/get_sku_prices', {data:value},function(result) {
//change the input price with the returned value
$('#price').value(result);
});
});
</script>
Price
是我希望显示 javascript 结果的目标输入。
一如既往的帮助。