Home > Backend Development > PHP Tutorial > 如何在文本框内显示数据库查询结果

如何在文本框内显示数据库查询结果

WBOY
Release: 2016-06-23 14:19:05
Original
1231 people have browsed it

本帖最后由 janselin 于 2013-08-13 13:59:43 编辑

有两个文本框,如何能在第一个文本框内输入一个表量,然后在另外一个文本框内显示根据前一个文本框输入的值在数据库中查询出的结果!
比如数据库中有一张员工表(员工姓名,部门),希望在第一个文本框内输入员工姓名,不需要按任何按钮,就可以第二个文本框自动显示对应的部门!


回复讨论(解决方案)

毫无疑问,这个用ajax实现

本人菜鸟一枚,能具体点吗?

<input type="text" id="text1" /><input type="text" id="text2" /><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">	$('#test1').blur(function(){		var parm = $('#test1').val().trim();		$.post("后台操作URL",{'val':parm},function(){			$('#test2').val(返回数据);		},返回数据类型);	});</script>
Copy after login
Copy after login

<input type="text" id="text1" /><input type="text" id="text2" /><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">	$('#test1').blur(function(){		var parm = $('#test1').val().trim();		$.post("后台操作URL",{'val':parm},function(){			$('#test2').val(返回数据);		},返回数据类型);	});</script>
Copy after login
Copy after login

++

还没搞定

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template