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の結果を表示したいターゲット入力です。
いつものように感謝します。