所以,我不确定我是否能做到这一点。如果没有,那么任何建议将不胜感激。如果这个问题很荒谬,请提前道歉......
我有一个在 php 中创建的数组,其中包含从数据库中填充的不同用户名。当用户提交表单时,我想使用 jQuery 检查提交的用户名是否已存在于已创建的数组中。我不太确定该怎么做。这就是我要去的地方。
PHP部分:
$existing_users = array();
$existing_users[] = $users; //this is reiterating in a while loop
HTML部分:
<input type='text' name='user_name' id='user_name' />
jQuery部分:
function checkAllFieldsForm() {
if (jQuery.inArray($('#user_name').val(),$existing_users) == -1) {
alert('no way this worked');
}
};
不确定我是否应该改用 $.each 或其他东西......似乎我需要通过 id 访问数组 $existing_users 但我没有给它一个。我需要给它一个部门ID吗?