Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<html> <input name='name'> <input name='handphone'> </html>
如果用户键入名称并且他们存储在 db 上的“手机”数据将显示在第二个输入表单上,我需要一些脚本
例如,如果完成
<form> <input name='name' value='surya'> <input name='handphone' value='081392111098'> </form>
我想你需要那个if Any User type name input and if name is in database then headphone input autofill from database。为此,您必须使用ajax或jQuery。
if Any User type name input and if name is in database then headphone input autofill from database
ajax
jQuery
谢谢