zoukankan      html  css  js  c++  java
  • Jquery显示与隐藏input默认值的实现代码

    本文介绍下,用Jquery实现显示或隐藏html页面中的Input值的方法,通过一个具体的例子,帮助大家的理解,有需要的朋友参考下吧。

    代码如下(需要引入外部Jquery文件,本例为jquery-1.7.1.min.js):

    代码示例:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <title>Jquery显示与隐藏input默认值_www.jbxue.com</title> 
    <script language="javascript" src="jquery-1.7.1.min.js"></script> 
    </head> 
    <body> 
    <p><input type="text" value="请输入邮箱地址" id="email" id="email" /></p> 
    <p><input type="button" value="提交" /></p> 
    <script type="text/javascript"> 
    $("#email").focus(function(){ 
       var email_txt = $(this).val(); 
       if (email_txt == this.defaultValue) { 
          $(this).val(""); 
       } 
      }) 
    $("#email").blur(function(){ 
       var email_txt = $(this).val(); 
       if (email_txt == "") { 
          $(this).val(this.defaultValue); 

    }) 
    </script> 
    </body> 
    </html>
  • 相关阅读:
    python框架之Flask(4)-上下文管理
    python框架之Flask(3)-Blueprint(蓝图)
    python框架之Flask(2)-路由和视图&Session
    python框架之Flask(1)-Flask初使用
    python中使用redis
    python之以字符串形式导入模块
    学习进度
    学习进度
    毕设进度
    毕设进度
  • 原文地址:https://www.cnblogs.com/xiaolongphp/p/4767183.html
Copyright © 2011-2022 走看看