今天在整网站的时候发现表单在IE6下无法正常提交,其他浏览器均正常…..
具体的解决方式如下:
1 2 3 4 5 6 7 8 |
<script type="text/javascript"> function donewssub(){ setTimeout(function(){ document.newssearchform.submit(); },1); } </script> |
本来在a标签上写的是 < a href=”javascript:void(0)” onclick=”document.newssearchform.submit()”>
修改成调用setTimeout即可解决IE6下表单提交问题
时间:2012-10-29 20:21:01
Latest posts by Zhiming Zhang (see all)
- aws eks node 自动化扩展工具 Karpenter - 8月 10, 2022
- ReplicationController and ReplicaSet in Kubernetes - 12月 20, 2021
- public key fingerprint - 5月 27, 2021