- <input name="password" type="text" id="showPwd" tabindex="2" class="input" value="密码" />
<input name="password" type="text" id="showPwd" tabindex="2" class="input" value="密码" />
- $("#showPwd").focus(function(){
- $(this).attr('type','password');
- });
$("#showPwd").focus(function(){ $(this).attr('type','password'); });
- // We can't allow the type property to be changed (since it causes problems in IE)
- if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) {
- jQuery.error( "type property can't be changed" );
- }
// We can't allow the type property to be changed (since it causes problems in IE) if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { jQuery.error( "type property can't be changed" ); }
- $("#pwd").focus(function(){
- $("#pwd")[0].type = 'password';
- $("#pwd").val("");
- });
$("#pwd").focus(function(){ $("#pwd")[0].type = 'password'; $("#pwd").val(""); });
- $("#showPwd").focus(function(){
- alert($("#showPwd")[0].type);
- $("#showPwd")[0].type = 'password';
- $("#showPwd").val("");
- });
$("#showPwd").focus(function(){ alert($("#showPwd")[0].type); $("#showPwd")[0].type = 'password'; $("#showPwd").val(""); });
- <input name="password" type="password" id="password" class="input" style="display: none;" />
<input name="password" type="password" id="password" class="input" style="display: none;" />
- $("#showPwd").focus(function() {
- var text_value = $(this).val();
- if (text_value == this.defaultValue) {
- $("#showPwd").hide();
- $("#password").show().focus();
- }
- });
- $("#password").blur(function() {
- var text_value = $(this).val();
- if (text_value == "") {
- $("#showPwd").show();
- $("#password").hide();
- }
- });
$("#showPwd").focus(function() { var text_value = $(this).val(); if (text_value == this.defaultValue) { $("#showPwd").hide(); $("#password").show().focus(); } }); $("#password").blur(function() { var text_value = $(this).val(); if (text_value == "") { $("#showPwd").show(); $("#password").hide(); } });
最终效果: 当输入框获得焦点的时,输入的内容显示为“****”;当失去焦点的时,内容为空时显示“密码”。
实例代码:
<script type="text/javascript">
function test(){
$("#showPwd").focus(function() {
var text_value = $(this).val();
var defv = this.defaultValue;
if (text_value == this.defaultValue) {
$("#showPwd").hide();
$("#password").show().focus();
}
});
$("#password").blur(function() {
var text_value = $(this).val();
if (text_value == "") {
$("#showPwd").show();
$("#password").hide();
}
});
}
function checkValue(obj){
if(obj.value==''){
obj.style.display='none';
document.getElementById('repassword_f').style.display='';
}
}
</script>
密码3:<input name="password" type="text" id="showPwd" tabindex="2" class="input" value="请输入密码" />
<input name="password" type="password" id="password" class="input" style="display: none;" />
<br/><br/>
密码5:<input type="text" id="repassword_f" value="请输入密码" onclick="this.style.display='none';document.getElementById('repassword').style.display='';document.getElementById('repassword').focus();"/>
<input name="repassword" type="password" id="repassword" onblur="checkValue(this);" style="display:none"/>
相关推荐
在"input输入框获取js点击文字内容.zip"这个压缩包中,我们可以预见到包含了一个简单的HTML页面(index.html),该页面可能实现了通过JavaScript来获取用户在输入框中输入的文字内容的功能。下面将详细介绍HTML5的`...
`<input>`元素是表单中用于接收用户输入的数据的基本组件,通过设置不同的`type`属性,如`text`、`email`、`password`等,可以定义不同的输入类型。在`input`元素上添加验证属性,可以实现在前端就对用户输入的数据...
此外,还可以结合JavaScript实现动态效果,如验证输入内容、添加提示信息、禁用或启用输入框等。例如,以下代码用于检查用户名是否为空: ```javascript document.getElementById("username").addEventListener(...
在HTML5中,`<input>`元素的`type`属性是一个非常重要的特性,它决定了输入框的功能和样式。通过设置不同的`type`属性值,我们可以创建各种类型的输入控件,以满足网页表单设计的需求。 1. **普通文本框(text)** ...
在AngularJS中,对input输入框进行限制,使其只能输入数字和小数点是一项常见的需求。这种需求通常用于财务或数量输入的场景,其中输入的格式要严格按照数字和小数点的要求来。本文将介绍一种推荐的AngularJS实现...
在Vue应用中,处理表单验证是常见的需求,尤其是涉及多个input输入框时。VueValidate是一个专门为Vue设计的表单验证插件,它允许开发者轻松地实现对多个input框的同步校验,并在输入框右侧实时显示提示信息。 在Vue...
这个输入框通常会有一个特定的`type="email"`属性,以确保浏览器提供电子邮件格式的验证提示。 ```html <input type="email" id="emailInput" placeholder="请输入邮箱地址"> ``` 接着,我们需要使用JavaScript来...
在这些框架中,你可以创建一个自定义组件,封装输入框及提示信息的逻辑,这样不仅可以统一处理所有输入框的提示,还可以轻松地添加其他交互效果,如验证、错误提示等。 总之,输入框的提示信息管理是网页表单设计中...
当提到“js增加输入框”,我们通常指的是利用JavaScript来动态创建HTML元素,特别是`<input>`元素,这是一种让用户在网页上输入数据的标准方式。 一、HTML `<input>` 元素 HTML中的`<input>`元素是表单(`<form>`)...
- 表单元素通过`<form name="form1">`定义,包含了一个文本输入框`<input type="text" name="tel"/>`和一个按钮`<input type="button" value="press" onclick="emailCheck()"/>`。 - 当用户点击按钮时,会触发`...
- **电子邮件输入框**(`<input type="email">`):用于验证输入的格式是否符合电子邮件地址的标准。 - **数字输入框**(`<input type="number">`):限制输入为数字,并可设置最小值和最大值。 - **日期选择框**...
在这个例子中,`<input>`元素的`type`属性被设置为`url`,表示这是一个用于输入URL的输入框。默认情况下,如果用户输入的不是有效的URL,表单提交时会被阻止。这样可以防止无效数据的提交,提高数据质量。 2. **...
HTML中的`<input>`标签用于创建输入框,而不同的`type`属性(如"text"、"password"、"email"等)可以定义输入类型,以提供特定的验证和用户体验。此外,表单验证、CSS样式和JavaScript脚本常常被用来增强输入框的...
本篇将详细讲解在jQuery环境下如何进行表单验证,以及一个实用的jQuery插件,它具备了各种input等验证功能,并支持ajax异步验证。 ### 1. jQuery表单验证基础 在jQuery中,我们可以利用事件监听器(如`submit`、`...
<input type="email" name="email" pattern="^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$"> ``` 这些属性极大地简化了表单验证的实现,但它们的验证规则相对基础,对于更复杂的验证需求,我们通常会借助...
<input type="email" id="email" name="email" data-rule="required;email" data-msg="请输入有效的邮箱地址"> ``` 然后在JavaScript中初始化验证器: ```javascript $(document).ready(function() { $("#myForm...
代码片段: 使用 :CSS3中的验证选择器 ...input type="email" class="exp__input" id="example2" name="test" placeholder="Email" required> " data-icon-ok="">Email </div>
Bootstrap 4引入了新的表单验证特性,通过添加`required`属性到`<input>`标签,可以开启浏览器内置的验证。当用户离开输入框且输入无效时,输入框会显示为红色边框,并显示`invalid-feedback`类中的错误信息。 3. *...