为了账号安全,请及时绑定邮箱和手机立即绑定

为什么代码中要用<input type="button" id="btn" value="clickMe">而不能用<button id="btn"></button>

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>挑战题</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
        <style>
            td{border:1px solid red}
        </style>
        
    </head>
    <body>
        <input type="button" id="btn" value="clickMe" />
        <table id="myTable" style="border:1px solid red;border-collapse:collapse">
            <tr>
                <td>姓名</td>
                <td>年龄</td>
                <td>身高</td>
                <td>配偶</td>
                <td>婚姻批言</td>
            </tr>
        </table>
        
        
        <script>
        $(document).ready(function(){
            var students=[
                {"name":"罗琛","age":"22","height":"150","mate":"金颖婕","comment":"金玉良缘"},
                {"name":"姜磊","age":"22","height":"180","mate":"金颖婕","comment":"金石为开"},
                {"name":"金颖婕","age":"22","height":"160","mate":"搞不清楚","comment":"无能为力"},
                ];
                
                $('#btn').bind("click",function(){
                    $.each(students,function(index,student){
                        $('table').append("<tr><td>"+student.name+"</td><td>"+student.age+"</td><td>"+student.height+"</td><td>"+student.mate+"</td><td>"+student.comment+"</td></tr>");
                    }); 
                }); 
            });
                
        </script>
    </body>
</html>


正在回答

1 回答

如果在 HTML 表单中使用 button 元素,不同的浏览器会提交不同的值。Internet Explorer 将提交 <button> 与 <button/> 之间的文本,而其他浏览器将提交 value 属性的内容。请在 HTML 表单中使用 input 元素来创建按钮。

0 回复 有任何疑惑可以回复我~
#1

littleKnife 提问者

虽然没有理解,但还是非常感谢
2016-06-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

为什么代码中要用<input type="button" id="btn" value="clickMe">而不能用<button id="btn"></button>

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信