[新着] Webテンプレートを仮オープンしました
<html>
<head>
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
<!--
function chk(obj){
if(obj.readOnly){
alert("この欄は readonlyに設定されています。");
}
}
//-->
</script>
</head>
<body>
<input type="text" readonly="readonly" value="foo" onclick="chk(this)"><br>
<input type="text" value="bar" onclick="chk(this)"><br>
<input type="text" readonly value="hoge" onclick="chk(this)">
</body>
</html>