를 어떻게 양식을 검증 말해 주실 래요? .I 사용자를 눌러 필드에서 경고 메시지를 버튼을 제출하고 얻을 수있는 데모 http://jquerytools.org/documentation/validator/ 을 보았다. 사용자가 다음 요소로 이동할 때 양식의 유효성을 검사하는 방법은 무엇입니까? 사용자가 다음 요소로 갈 때
사용자가 다른 요소로 전환하면 어떻게 되나요?
내 데모 첫 번째 필드는 "숫자"입니다. 사용자가 "문자열"을 입력하고 다음으로 이동하면 오류가 발생합니다. 같은 두 번째는 사용자 .If 수는 "문자열"을 입력하고 다음은 여기에 오류를
을 제공 당신은 요소의 'blur()'
에 함수를 등록 할 수 있습니다 바이올린 http://jsfiddle.net/M27F2/2/
$("#myform").dform(
{
"elements": [
{
"html": [
{
"html": [
{
"type": "number",
"id": "totalRetryCount",
"name": "totalRetryCount",
"required": false,
"value": 0,
"tabindex": 1,
"onblur": "validateElement('Configuration', 'testSuiteConfigurationform','totalRetryCount')"
}
],
"type": "fieldset",
"caption": "Total Retry Count"
},
{
"html": [
{
"type": "number",
"id": "totalRepeatCount",
"name": "totalRepeatCount",
"required": false,
"value": 0,
"tabindex": 2,
"onblur": "validateElement('Configuration', 'testSuiteConfigurationform','totalRepeatCount')"
}
],
"type": "fieldset",
"caption": "Total Repeat Count"
},
{
"html": [
{
"type": "select",
"options": {
"true": "true",
"false": "false"
},
"id": "summaryReportRequired",
"name": "summaryReportRequired",
"required": false,
"value": "true",
"tabindex": 3,
"onblur": "validateElement('Configuration', 'testSuiteConfigurationform','summaryReportRequired')"
}
],
"type": "fieldset",
"caption": "Summary Report Required"
},
{
"html": [
{
"type": "select",
"options": {
"ALWAYS": "ALWAYS",
"ON_SUCCESS": "ON_SUCCESS"
},
"id": "postConditionExecution",
"name": "postConditionExecution",
"required": false,
"value": "ON_SUCCESS",
"tabindex": 4,
"onblur": "validateElement('Configuration', 'testSuiteConfigurationform','postConditionExecution')"
}
],
"type": "fieldset",
"caption": "Post Condition Execution"
}
],
"type": "div",
"class": "inputDiv",
"caption": "<h3>Configuration Parameters</h3>"
}
],
"id": "testSuiteConfigurationform",
"name": "testSuiteConfigurationform",
"method": "post"
}
);
선생님 당신이 내 바이올린 내가 .. :) –
@GarySchreiner을 변경하십시오 수 있습니다, 어떻게 jQuery를 도구에 대한이 질문은 완전히 다른 플러그인에 대한 질문의 중복 될 수 있는가? –
@GarySchreiner을 다할 것입니다 – Sparky