12112姜睿喆
html內建語法
預設的type是text
value是在input裡面放ㄉ東西
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text">
</body>
</html>
這樣你就可以輸入東西了ㄛㄛㄛ
<Input onchange="">
當我按下enter時
<input type="text" onchange="alert(this.value)">
<body>
<input type="button" value="輸入答案">
<button>輸入答案</button>
</body>
<button onclick="想做的事情">
當我按下時
<script>
function input(){
var text = document.getElementById("input").value;
alert(text)
}
</script>
<body>
<input type="text" id="input" onchange="input()">
</body>
<script>
function input(){
alert(document.getElementById("input").value)
}
</script>
<body>
<input type="text" id="input">
<button onclick="input()">送出答案</button>
</body>
<script>
if(條件){
想執行的事情1
}else if(條件){
想執行的事情2
}else{
想執行的事情3
}
</script>
其實只要寫出
按button送出
有條件判斷的東西就好ㄌ