URI (URL) のチェックを行なう

<!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/style.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/prototype.js" charset="shift_jis"></script>
<script type="text/javascript" src="js/effects.js" charset="shift_jis"></script>
<script type="text/javascript" src="js/validation.js" charset="shift_jis"></script>
<script type="text/javascript"><!--
Event.observe(window, "load", function(){
new Validation("rForm",{useTitles:true});
}, true);
// --></script>
</head>
<body>
<h1>URLチェック</h1>
<form id="rForm" name="rForm" method="get" action="./check.cgi">
登録したいURL:<input type="text" name="registURL" id="registURL" class="required validate-url" title="URLを入れてください">
<input type="submit" value="送信">
</form>
</body>
</html>
サンプルを実行
[戻る]
prototype.jsパーフェクトリファレンス説明などは本書を参考にしてください。