勾选复选框激活文本框编辑

老虎说测试 前端技术字数 445阅读1分29秒阅读模式
摘要勾选复选框激活文本框编辑

函数:

[php]function on_hide(){
document.getElementById("hide").style.display = (document.getElementById("checkbox").checked == true) ? "block" : "none";
document.getElementById("hide1").style.display = (document.getElementById("checkbox").checked == true) ? "block" : "none";
}[/php]文章源自陈学虎-https://chenxuehu.com/article/2013/08/1320.html

应用:文章源自陈学虎-https://chenxuehu.com/article/2013/08/1320.html

[php]<input type="password" name="todopass" id="hide" style="display:none;" value="<?php echo $rs['tk_user_backup4'] ?>"/>
<input type="submit" value="更新" id="hide1" style="display:none;" />[/php]文章源自陈学虎-https://chenxuehu.com/article/2013/08/1320.html 文章源自陈学虎-https://chenxuehu.com/article/2013/08/1320.html

 
  • 版权声明:本文为原创文章,转载请附上原文出处链接及本声明。
  • 转载请注明:勾选复选框激活文本框编辑 | https://chenxuehu.com/article/2013/08/1320.html