显示效果:
①Ajax使用: 注意传值的所有过程用的是小写,及时数据库列的名称中有大写字母
控制器部分:
AjaxController.class.php
1 <?php 2 namespace Home\Controller; 3 use Think\Controller; 4 class AjaxController extends Controller 5 { 6 7 public function Ajax(){ 8 9 if (empty($_POST)) { 10 $this->display(); 11 } 12 else{ 13 $code=$_POST["code"]; 14 $nation=D(‘nation‘); 15 $attr=$nation->find($code); 16 $name=$attr["name"]; 17 $this->ajaxReturn($name,‘eval‘); 18 19 } 20 } 21 22 23 }
②Ajax.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <script src="../../../../../jquery-1.11.2.min.js"></script> 7 </head> 8 <body> 9 10 <input type="text" id="code"></input> 11 <!-- <input type="button" value="显示" id="test"></input> --> 12 <span id="xianshi"></span> 13 <form> 14 <input type="text" required="required"></input> 15 <input type="submit" value="提交"></input> 16 </form> 17 </body> 18 </html> 19 <script type="text/javascript"> 20 $(document).ready(function(e){ 21 22 $("#code").blur(function(){ 23 //alert($); 24 var code=$(‘#code‘).val(); 25 $.ajax({ 26 url:"__SELF__", 27 data:{code:code}, 28 type:"POST", 29 dataType:"TEXT", 30 success:function(data){ 31 //alert(data); 32 $("#xianshi").html(data); 33 } 34 }) 35 }) 36 }); 37 </script>
时间: 2024-10-18 10:13:09