在button中添加 type="button"和不添加中有什么区别呢

来源:1-9 JavaScript-什么是函数

qq_王允_03153589

2016-04-17 17:47

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<button>点击我</button> <!--这个地方没添加type="button"-->
</body>
</html>


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<button type="button">Click Me!</button>
</body>
</html>


写回答 关注

2回答

  • 丶筱筱
    2016-04-17 17:59:04
    已采纳

    慕工程042...

    button type="button" 不是input type="button"

    2017-01-05 14:09:37

    共 2 条回复 >

  • qq_微笑向暖_8
    2016-04-17 18:17:07

     在javascript  只有input=button 按钮才能用

    qq_微笑向...

    input type=button

    2016-04-17 18:17:51

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题