首页 > 代码库 > 焦点聚焦失焦默认值显示隐藏
焦点聚焦失焦默认值显示隐藏
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="checkbox" name=""> <input type="checkbox" name=""> <input type="checkbox" name=""> <input type="text" name="" value="请填写..."> </body> <script type="text/javascript" src="js/jquery-3.2.1.js"></script> <script type="text/javascript"> $(function(){ $("input[type=‘checkbox‘]").prop("checked",true); $("input[type=‘checkbox‘]:eq(2)").prop("disabled",true); $(‘input[type=text]‘).focus(function(){ var mozhi=$(this).val(); if(mozhi==‘请填写...‘){ $(this).val(‘‘) } }); $(‘input[type=text]‘).blur(function(){ var thisval=$(this).val(); if(thisval==‘‘){ $(this).val("请填写..."); } }) }) </script> </html>
焦点聚焦失焦默认值显示隐藏
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。