请参阅示例小提琴
如果您在搜索框中输入任一示例代码,您将获得在 jQuery UI 对话框中弹出的结果。
第一个例子是006。
这是代码...
if (ccode == 006) {
sarcomment = '006';
sardefinition = 'If you need to make corrections to your information, you may either make them online at www.fafsa.gov, or by using this SAR. You must use your Federal Student Aid PIN to access your record online. If you need additional help with your SAR, contact your school’s financial aid office or visit www.fafsa.gov and click the “Help” icon on the FAFSA home page. If your mailing address or e-mail address changes, you can make the correction online or send in the correction on your SAR. ';
saractionneeded = 'N/A';
}
紧接着,您将看到代码030的代码。
这是代码...
if (ccode == 030) {
sarcomment = '030';
sardefinition = 'We are unable to read all of the information on your FAFSA or SAR because it was damaged. Please review all of the items on this SAR and make any corrections as needed.';
saractionneeded = 'N/A';
}
代码 006 和 030 的设置相同。我在这里了解到的是,我创建的任何以 0(零)结尾的搜索条件都将导致未定义的查询。
不确定如何解决此问题并寻求您的帮助。