标签:
<button value="蚂蚁部落一">蚂蚁部落</button> <input type="button" value="蚂蚁部落二">蚂蚁部落</button>
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <title>蚂蚁部落</title> <script type="text/javascript"> window.onload=function() { var first=document.getElementById("first"); var second=document.getElementById("second"); alert(first.value); alert(second.value); } </script> <body> <input type="button" value="蚂蚁部落一" id="first" /> <button value="蚂蚁部落二" id="second">蚂蚁部落</button> </body> </html>
以上代码可以测试在不同浏览器下获取值是取自哪一部分。
原文地址是:http://www.51texiao.cn/HTML5jiaocheng/2015/0521/2132.html
<input type="button">和<button>的区别
标签:
原文地址:http://www.cnblogs.com/come-on/p/4634159.html