フォームのテキストエリアを検証するにはどうすればよいですか?つまり、空にしたり、新しい行を追加したりしないでください。その場合は、アラートを発生させます。
コード:
<script>
function val()
{
//ifnewline found or blank raise an alert
}
</script>
<form>
<textarea name = "pt_text" rows = "8" cols = "8" class = "input" WRAP ></textarea>
<input type=""button" onclick="val();"
</form>
私が考えることができる最も簡単な方法:
function validate() {
var val = document.getElementById('textarea').value;
if (/^\s*$/g.test(val) || val.indexOf('\n') != -1) {
alert('Wrong content!');
}
}
これを試して:
<textarea id="txt" name = "pt_text" rows = "8" cols = "8" class = "input" WRAP ></textarea>
function val()
{
if (trimAll(document.getElementById('txt').value) === '')
{
alert('Empty !!');
}
}
function trimAll(sString)
{
while (sString.substring(0,1) == ' ')
{
sString = sString.substring(1, sString.length);
}
while (sString.substring(sString.length-1, sString.length) == ' ')
{
sString = sString.substring(0,sString.length-1);
}
return sString;
}
<html>
<head>
<script type="text/javascript">
function val(value){
if(value.length == 0)
alert("thsi is empty");
}
</script>
</head>
<body>
<textarea id="text"></textarea>
<button onclick="val(text.innerHTML);">Check</button>
</body>
</html>
これは、textareaが空かどうかを確認するためのものです
検証の簡単な方法は次のとおりです。
function validate() {
var val = document.getElementById('textarea').value;
if (/^\s*$/g.test(val)) {
alert('Wrong content!');
}
}
<script>
function val()
{
if(document.getElementById("textAread_id").value==null || document.getElementById("textAread_id").value=="")
alert("blank text area")
}
</script>
<form>
<textarea id="textAread_id" name = "pt_text" rows = "8" cols = "8" class = "input" WRAP ></textarea>
<input type=""button" onclick="val();"
</form>
まず、textareaに一意の識別子を付けて、参照を簡単に取得できるようにします。
次に、次のように、改行が含まれているか、空であるかをテストできます。
function val() {
var el = document.getElementById('pt_text');
if (el == null) {
// no element with given id has been found
return;
}
var value = el.value;
if (value == null || value === '' || value.indexOf('\n') > 0) {
alert('empty or contains a new line');
}
}