设置密码可见与不可见
Posted 幻雪奇缘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置密码可见与不可见相关的知识,希望对你有一定的参考价值。
1、prop()方法应该用于解锁属性值,例如DOM属性(如selectedIndex,tagName,nodeName,nodeType,ownerDocument, defaultChecked, 和 defaultSelected)。
提示:如需检索 html 属性,请使用 attr() 方法代替。
提示:如需移除属性,请使用 removeProp()方法。
2、返回属性的值:
$(selector).prop(property);
3、设置属性和值:
$(selector).prop(property,value);
4、使用函数设置属性和值:
$(selector).prop(property,function(index,currentvalue));
5、设置多个属性和值:
例子:<p><b>注意:</b>确认或取消选中该复选框,然后单击按钮刷新内容。</p>
<button>查看attr() 和 prop() 的值</button>
<br><br>
<input id="check1" type="checkbox" checked="checked">
<label for="check1">Check me</label>
<p id="p1"></p>
$(document).ready(function(){
$("button").click(function(){
$("#p1").html("attr(‘checked‘): " + $("input").attr(‘checked‘)
+ "<br>prop(‘checked‘): " + $("input").prop(‘checked‘));
});
});
注意:确认或取消选中该复选框,然后单击按钮刷新内容。
结果——attr(‘checked‘): checked
prop(‘checked‘): true
以上是关于设置密码可见与不可见的主要内容,如果未能解决你的问题,请参考以下文章