用behavior防止表单数据丢失

在做表单的时候,由于网络问题,可能会出现表单提交不成功,而导致输入的能容被清空了。特别是后退返回的时候~~
下面这一段可以防止这个问题的出现

本篇文章来源于《无忧WEB技术网》转载请以链接形式注明出处 网址:http://www.100xue.cn/web/web_10251123326.html

<html> 
<head> 
<meta name="save" content="history"> 
<style> 
.history {behavior:url(#default#savehistory);} 
</style> 
</head> 
<body> 
<input class=history type=text id=opersistinput> 
</body> 
</html>




本篇文章来源于《无忧WEB技术网》转载请以链接形式注明出处 网址:http://www.100xue.cn/web/web_10251123326.html

你可能感兴趣的:(html,Web)