TP ajax
Posted 梦里梦到梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP ajax相关的知识,希望对你有一定的参考价值。
①Ajax使用: 注意传值的所有过程用的是小写,及时数据库列的名称中有大写字母
控制器部分:
AjaxController.class.php
<?php namespace Home\\Controller; use Think\\Controller; class AjaxController extends Controller { public function Ajax(){ if (empty($_POST)) { $this->display(); } else{ $code=$_POST["code"]; $nation=D(\'nation\'); $attr=$nation->find($code); $name=$attr["name"]; $this->ajaxReturn($name,\'eval\'); } } }
②Ajax.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="../../../../../jquery-1.11.2.min.js"></script> </head> <body> <input type="text" id="code"></input> <!-- <input type="button" value="显示" id="test"></input> --> <span id="xianshi"></span> <form> <input type="text" required="required"></input> <input type="submit" value="提交"></input> </form> </body> </html> <script type="text/javascript"> $(document).ready(function(e){ $("#code").blur(function(){ //alert($); var code=$(\'#code\').val(); $.ajax({ url:"__SELF__", data:{code:code}, type:"POST", dataType:"TEXT", success:function(data){ //alert(data); $("#xianshi").html(data); } }) }) }); </script>
以上是关于TP ajax的主要内容,如果未能解决你的问题,请参考以下文章