html的代码如下: <div class="test-ft"> <h3 class="shouji">手机号码凶吉</h3> <form needcheck="1" method="post" target="_blank" action="http://www.go108.com.cn/go108_mobile_free_sz.php"> <p> ... </p> <button class="btn-act">马上测</button> </form> </div>
定义和用法type 属性规定按钮的类型。提示:请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。可以看出,其他浏览器下默认button点击后会提交form,而ie默认点击后是不提交form的,type的默认值也是个浏览器兼容性问题,所以mark下。 |