<strong><button>标签</button></strong> <br>定义和用法 <br><button>标签定义一个按钮。 <br>在button元素内部,您可以放置内容,比如文本或图像。这是该元素与使用input元素创建的按钮之间的不同之处。 <br><button>控件与<inputtype>相比,提供了更为强大的功能和更丰富的内容。<button>与</button>标签之间的所有内容都是按钮的内容,其中包括任何可接受的正文内容,比如文本或多媒体内容。例如,我们可以在按钮中包括一个图像和相关的文本,用它们在按钮中创建一个吸引人的标记图像。 <br>唯一禁止使用的元素是图像映射,因为它对鼠标和键盘敏感的动作会干扰表单按钮的行为。 <br>请始终为按钮规定type属性。InternetExplorer的默认类型是"button",而其他浏览器中(包括W3C规范)的默认值是"submit"。 <br><strong>浏览器支持</strong> <br>所有主流浏览器都支持<button>标签。 <br><strong>重要事项</strong>:如果在HTML表单中使用button元素,不同的浏览器会提交不同的值。InternetExplorer将提交<button>与<button></button>之间的文本,而其他浏览器将提交value属性的内容。请在HTML表单中使用input元素来创建按钮。 <br><strong>注意事项</strong> <br>在使用<button>标签时很容易想当然的当成<inputtype>使用,这很容易产生以下几点错误用法: <br>1、通过$('#customBtn').val()获取<buttonid>按钮</buttonid></inputtype></button>value的值 <br>在IE(IE内核)下这样用到得的是值是“按钮”,而不是“test”,非IE下得到的是“test”。参加上面标红的第一句话。 <br>这一点要和<inputtype>区分开。 <br>通过这两种方式$('#customBtn').val(),$('#customBtn').attr('value')在不同浏览器的获得值,如下: <br> <table class="jbborder"> <tbody> <tr> <td width="109"> <p align="center">Browser/Value</p> </td> <td width="189"> <p align="center">$('#customBtn').val()</p> </td> <td width="265"> <p align="center">$('#customBtn').attr('value')</p> </td> </tr> <tr> <td width="109"> <p align="center">Firefox13.0</p> </td> <td width="189"> <p align="center">test</p> </td> <td width="265"> <p align="center">test</p> </td> </tr> <tr> <td width="109"> <p align="center">Chrome15.0</p> </td> <td width="189"> <p align="center">test</p> </td> <td width="265"> <p align="center">test</p> </td> </tr> <tr> <td width="109"> <p align="center">Opera11.61</p> </td> <td width="189"> <p align="center">test</p> </td> <td width="265"> <p align="center">test</p> </td> </tr> <tr> <td width="109"> <p align="center">Safari5.1.4</p> </td> <td width="189"> <p align="center">test</p> </td> <td width="265"> <p align="center">test</p> </td> </tr> <tr> <td width="109"> <p align="center">IE9.0</p> </td> <td width="189"> <p align="center">按钮</p> </td> <td width="265"> <p align="center">按钮</p> </td> </tr> </tbody> </table> <br>验证这一点可以在测试下面的代码 <br><br><div class="msgheader"> <div class="right"><span style="CURSOR: pointer" onclick="copycode(getid('phpcode14'));"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode14"> <br> <br> <br><metahttp-equiv></metahttp-equiv> <br><scripttype> <br><scripttype> <br>$(function(){ <br>$('#test1').click(function(){ <br>alert($('#customBtn').attr('value')); <br>}); <br>$('#test2').click(function(){ <br>alert($('#customBtn').val()); <br>}); <br>}); <br> <br> <br> <br><buttonid>按钮 <br><inputtype></inputtype> <br><inputtype></inputtype> <br> <br> <br></buttonid></scripttype></scripttype> </div> <br>2、无意中把<button>标签放到了<form>标签中,你会发现点击这个button变成了提交,相当于<inputtype></inputtype> <br>这一点参见上面第二句标红的话就明白什么意思了。 <br>不要把<button>标签当成<form>中的input元素。 <br>验证这一点可以在测试下面的代码 <br><br><div class="msgheader"> <div class="right"><span style="CURSOR: pointer" onclick="copycode(getid('phpcode15'));"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode15"> <br> <br> <br><formaction> <br><button>button</button> <br><inputtype></inputtype> <br><inputtype></inputtype> <br> <br> <br> <br></formaction> </div> </form></button> </form></button></inputtype></button></button></inputtype></button></button>