[dPasswordライブラリ] パスワード入力時にパスワードの最後の1文字だけ表示する

説明

dPasswordライブラリでパスワード入力時にパスワードの最後の1文字だけ表示するにはinputタグのパスワードでID名にpasswordの文字が含まれるものを指定します(password123でもよい)。次にページが読み込まれたら$("input:password").dPassword()とします。複数のパスワードフィールドがある場合には、それぞれpasswordの文字が含まれるID名を割り当てます。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jQuery.dPassword.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>iPhoneライクなパスワード入力(最後の1文字だけ表示)</h1>
<form>
パスワード:<input type="password" id="password">
</form>
</body>
</html>

【sample.js】
$(function(){
$("input:password").dPassword();
});
サンプルを実行
[戻る]