赞
踩
button的type 属性,IE的默认是 “button”,非IE默认是 “submit”。
如果想不提交需要指定type为”button”。
<form>
<button type="button">button</button><!--不提交form-->
<button type="submit">button</button><!--提交form-->
<button>button</button><!--非IE提交form,IE不提交form-->
</form>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。