1. 程式人生 > >Js的屬性操作(1)

Js的屬性操作(1)

text 修改 input value body 替換 onclick inpu scrip

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標題文檔</title>

<script>
/*
HTML 的屬性操作:讀、寫
屬性名:
屬性值:

讀操作:獲取、找到
元素.屬性名

寫操作:“添加”、替換、修改
元素.屬性名 = 新的值

*/
window.onload = function (){
var oBtn = document.getElementById(‘btn1‘);
var oText = document.getElementById(‘text1‘);
var oSelect = document.getElementById(‘select1‘);

oBtn.onclick = function (){
// alert(oBtn.value); // ‘按鈕‘
// alert( oText.value );
// alert( oSelect.value );

// 字符串連接
// oText.value oSelect.value
// ‘劉偉‘ + ‘北京‘ => ‘劉偉北京‘
// ‘劉偉‘ + ‘在‘ + ‘北京‘ => ‘劉偉在北京‘

alert(oText.value + ‘ 在 ‘ + oSelect.value);
};
};
</script>

</head>

<body>

<input id="text1" type="text" />
<select id="select1">
<option value="北京">北京</option>
<option value="上海">上海</option>
<option value="杭州">杭州</option>
</select>
<input id="btn1" type="button" value="按鈕" />

</body>
</html>

Js的屬性操作(1)