JavaScript HTML DOM Input Button 对象
-
Input Button 对象
Input Button对象表示带有type=“button”的HTML <input>元素。您可以使用getElementById()访问type=“button”的<input>元素:
尝试一下var x = document.getElementById("myBtn");
提示:您还可以通过搜索表单的elements集合来访问<input type =“button”> 。您可以使用document.createElement()方法创建一个带有type=“button”的<input>元素:
尝试一下var x = document.createElement("INPUT"); x.setAttribute("type", "button");
-
-
-