html如何用checkbox 控制文本框中的内容.
我希望有个checkbox,选中时,文本框中显示1,取消选中时,文本框中内容取消,怎么做?应该是个script,应该怎么写?...
我希望有个checkbox,选中时,文本框中显示1,取消选中时,文本框中内容取消,怎么做?
应该是个script,应该怎么写? 展开
应该是个script,应该怎么写? 展开
展开全部
试试是不是你想要的?
<script language=javascript>
function check(){
if(cbx.checked==true){
document.getElementById("show").value="1";
}else{
document.getElementById("show").value="";
}
}
</script>
<html>
<body>
<input type=checkbox id="cbx" onclick="check()"><input type="text" id="show">
</body>
</html>
<script language=javascript>
function check(){
if(cbx.checked==true){
document.getElementById("show").value="1";
}else{
document.getElementById("show").value="";
}
}
</script>
<html>
<body>
<input type=checkbox id="cbx" onclick="check()"><input type="text" id="show">
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询