我想在另一個函數validateForm中調用函數notEmpty。但是我需要通過這個函數的選擇器並在提交表單之後。調用函數提交按鈕
請看:
$("#accountemail").blur(notEmpty);
$("#submit_account").click(validateForm);
function notEmpty()
{
if($(this).val() == "")
{
// Send a warning message
warn($(this), "notEmpty");
return false;
}
else
{
// Remove a warning message
unwarn($(this), "notEmpty");
return true;
}
}
function validateForm()
{
// How i can call the function passing the selector and after submit the form?
}
什麼是「選擇器」? – 2012-03-08 14:45:33
表單 – KillCloud 2012-03-08 15:06:00