本文主要和大家分享以$.post方式提交数据 并以json格式返回数据的方法实例,希望能帮助到大家。
js部分
<script>function getType(url, id) { $.post(url, {'id': id}, function(res) { $("input[name='formula']").val(res.finally); $("input[name='formula2']").val(res.proportion); }, 'json'); }</script>
PHP部分
public function gettype(){ $where['id'] = trim($_POST['id']); $info = M('formula')->where($where)->find(); echo json_encode($info);exit; }
html部分
<input name="formula" class="form-control" type="text"><input name="formula" class="form-control" type="text"><select name='type' select" onchange="getType('Deal/gettype', this.value);"> <option value="海口">海口</option> <option value="海口">海口</option> <option value="海口">海口</option></select>
相关推荐:
以上是$.post提交数据并以json格式返回数据方法实例的详细内容。更多信息请关注PHP中文网其他相关文章!