js属性操作
Posted Objiect
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js属性操作相关的知识,希望对你有一定的参考价值。
<!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 (){
//oBtn.value = ‘button‘;
//oText.value = 123;
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属性操作的主要内容,如果未能解决你的问题,请参考以下文章