码迷,mamicode.com
首页 > 其他好文 > 详细

点击按钮自动刷新页面

时间:2018-09-05 17:31:56      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:font   idt   return   页面   none   解决   width   一个   刷新   

<问题>

<button type="button" style="height: 29px; float: left; width: 18%; border: none; border-left: 1px solid #d07878; border-radius: 0 4px 5px 0; padding-top: 3px" onclick="return search()">

点击上述按钮,页面自动刷新

<原因>

在W3C浏览器中,button标签按钮会提交表单,而input标签type属性为button不会对表单进行任何操作。

<解决>

1.将button标签更换为input

<input type="button" ></input>

2.为button按钮增加一个type=”button”属性

<button type="button" style="height: 29px; float: left; width: 18%; border: none; border-left: 1px solid #d07878; border-radius: 0 4px 5px 0; padding-top: 3px" onclick="return search()">

点击按钮自动刷新页面

标签:font   idt   return   页面   none   解决   width   一个   刷新   

原文地址:https://www.cnblogs.com/bjhblogs/p/9592138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!