how is this jquery app validating the username? (3rd party script)
我使用相同的第三方脚本进行上述问题中提到的表单验证 。现在我们在第三方脚本中有文件jquery.validationEngine-en.js。所以我的html中有一个字段称为
<input type="text" id ="test1" value ="" class ="ajax[optional,ajaxcode]">
我们用这种方式定义的jquery.validationEngine-en.js中的
"ajaxcode":{
"file":"get_custcode.php?citycode=",
"alertText":"code is already taken",
"alertTextOk":"",
"alertTextLoad":"* Checking..."
},
所以我的问题是如何通过一些动态值(PHP)传递citycode(参数),这在服务器端脚本(PHP)中非常强制,以确保该城市中不存在custcode dowsnot。但是我无法通过城市代码。这是我尝试过的各种事情 传递值
"file":"get_custcode.php?citycode="+<? echo $_REQUEST['citycde']?>,
"file":"get_custcode.php?citycode=<? echo $_REQUEST['citycde']?>",
答案 0 :(得分:1)
如何将城市的价值放在隐藏的表格中,让jQuery从中获取价值以进行验证:
HTML
<input type="hidde" id="cityCode" value='<? echo $_REQUEST['citycde']?>' />
Js脚本
"file" : "get_custcode.php?citycode="+$("#cityCode").val()