本文主要和大家分享以$.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中文網其他相關文章!