Home > Backend Development > PHP Tutorial > javascript - HTML 提交表单后,输入框还有字,是怎么做到的?

javascript - HTML 提交表单后,输入框还有字,是怎么做到的?

WBOY
Release: 2016-06-06 20:07:12
Original
1421 people have browsed it

<code><input type="text" name="aName" value="" class=" "></code>
Copy after login
Copy after login

就是这个提交后,会空的;
我会用 php

<code>echo  '<input type="text" name="'.$aVar.'" value="" class=" ">';</code>
Copy after login
Copy after login

这个我就是感觉比较二,项目中,都是怎么做的?
说说原理就行哈!

回复内容:

<code><input type="text" name="aName" value="" class=" "></code>
Copy after login
Copy after login

就是这个提交后,会空的;
我会用 php

<code>echo  '<input type="text" name="'.$aVar.'" value="" class=" ">';</code>
Copy after login
Copy after login

这个我就是感觉比较二,项目中,都是怎么做的?
说说原理就行哈!

Ajax的话,在回调里重新赋值就行;
非ajax的话,记cookie或session

存cookies让js调,或者存session,每次都展示最近一次的提交记录

前后端分离,就是前端用ajax调用就不会刷新啊

采用ajax异步提交就不会刷新界面,输入值就会保留

如果是后台的顶部的筛选条件的话 让value = $_GET['field']就可以了

搜索“无刷新更新数据”

后台提交表单,不刷新页面
根据服务器返回的结果判断留在当前页还是要跳转

采用表单方式提交, 页面跳转就是需要这样
采用ajax方式提交, 页面没有发生跳转, 所以会保留

Related labels:
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