我剛剛開始使用JavaScript並希望驗證表單。我發現的所有教程都會爲反饋創建一個警報,但我想使用onblur並在該字段旁邊顯示一條錯誤消息。我設法分開執行這兩個功能,但不能合併它們。我真的很感謝你的幫助!函數內部的javascript函數
這是我想出了,但它並沒有做什麼,我需要:
function validateFirstName()
{
var x=document.forms["demo"]["firstname"].value;
if (x==null || x=="" || x==)
{
function addMessage(id, text)
{
var textNode = document.createTextNode(text);
var element = document.getElementById(id);
element.appendChild(textNode);
document.getElementById('firstname').value= ('Firstname must be filled out')
}
return false;
}
}