<select id="slList" onchange="selectShow()">
<option value="100">A</option>
<option value="200">B</option>
<option value="300">C</option>
<option value="400">D</option>
</select>
<input type="text" id="txtShow" />
<script>
window.onload=selectShow;
function selectShow(){
document.getElementById("txtShow").value=document.getElementById("slList").value;
}
</script>
input与seelct功能二合一
阅读:4761 输入:2014-05-27 00:52:27
- 上一篇:php相隔算天数
- 下一篇:sqlite乱码处理方案