Input Button type 屬性
Button 對象定義和用法
type 屬性可返回表單元素的類型。
Button 對象的類型始終是 "button"。
語法
buttonObject.type
瀏覽器支持
所有主要瀏覽器都支持 type 屬性
實(shí)例
實(shí)例
下面的例子將返回按鈕的表單元素類型:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("button1").type;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="displayResult()" value="Display input type" id="button1">
</form>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("button1").type;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="displayResult()" value="Display input type" id="button1">
</form>
</body>
</html>
嘗試一下 ?
Button 對象
更多建議: