课程
/前端开发
/JavaScript
/JavaScript进阶篇
var oSlt = document.getElementById("select").value;后面value什么意思
2016-05-13
源自:JavaScript进阶篇 6-11
正在回答
获取或设置该元素的值
好孩子001 提问者
恩 谢谢
获取id为select的控件的value值
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
3 回答var j= document.getElementById("wb").value
3 回答function checkone(){ var j=document.getElementById("wb").value; var hobby = document.getElementById("hobby"+j); hobby.checked = true; }
2 回答var oTxt1 = document.getElementById("txt1").value; 为什么要写value
2 回答这里的取值用var = document.getElementById(“id”).value
2 回答请求大神指教, 如下写不累赘吗 var y=document.getElementById(x).value; document.getElementById(x).value=y.toUpperCase()