我是 jquery 的新手。在我当前的 cakephp 页面中,网址是:
http://localhost/ultimate/admin/treatments/add
我有一个 json 数组:<?php $json = $this->Js->object($matchs);?>
内容有:'[{"Type":{"name":"Items 1","price":"15","duration":"10"}},{"Type":{"name":"Items 2","price":"30","duration":"25"}}]'
现在我有了一个名称:Items 1,如何使用 Jquery 从 json 数组中获取价格并更新到一个输入区域。
像这样的东西,但我不知道:
$(document).ready(function(){
$('#treatment_foo').change(function(){
$.ajax({
url: 'add',
data:
dataType: 'json',
cache: false,
success: function(result) {
$('#fee_foo').val($('#treatment_foo').val());
},
});
});
});