[CoolInputライブラリ] ウォーターマークを表示する

説明

CoolInputライブラリでウォーターマークを表示するにはinputタグのtitle属性に表示するウォーターマーク文字を指定しておきます。あとは$()でinputタグを指定しcoolinput()メソッドを呼び出します。

サンプルプログラム

【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.coolinput.min.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>CoolInputサンプル</h1>
<form>
<input type="text" title="名前を入れて下さい" id="username" name="username">
</form>
</body>
</html>


【sample.js】
$(function(){
$("#username").coolinput();
})
サンプルを実行
[戻る]