使用jQuery Validation中的内置远程方法,我可以参考PHP文件。当我想为一个条件只执行一次时,这可以正常工作,但是如何包含第二个远程方法来评估第二个条件?
以下是我只包含一个遥控器的方法:
right_form_url: {
required: true,
image: true,
gif: true,
remote: "imagecheck.php"
}
是否可以执行以下操作:
remote_2: "file.php"
答案 0 :(得分:1)
将它们指定为数组
remote: ["imagecheck.php", "file.php", "file2.php"] //and so on