保持JQuery Vars的另一个功能(Global vars?)

时间:2015-03-13 20:18:05

标签: javascript jquery arrays passwords

我正在尝试制作密码检查系统。 我已经决定要检查它是否是常用密码。

为此,我将外部txt文件加载到数组中。但是,我的密码检查功能似乎无法读取此数组。

jQuery(document).ready(function() {
var commonPass = new Array;
jQuery.get('/static/commonPass.txt', function(data){
    commonPass = data.split('\n');
    console.log(commonPass);
});
console.log(commonPass);
//you have to use keyup, because keydown will not catch the currently entered value
jQuery('input[type=password]').keyup(function() { 

    // set password variable
    var pswd = jQuery(this).val();

    //check if common password
    console.log(pswd);
    if ( jQuery.inArray(str.toLowerCase(pswd), commonPass)!= -1) {
        console.log('InArray');
        jQuery('#known').removeClass('valid').addClass('invalid');
    } else {
        console.log('NotInArray');
        jQuery('#known').removeClass('invalid').addClass('valid');
    }

});

是否可以创建全局jQuery / Javascript变量,这是否可以解决此问题?

1 个答案:

答案 0 :(得分:1)

commonPass移到所有功能范围之外

jQuery(document).ready(function() {
var commonPass = new Array;

......应该......

var commonPass = new Array;
jQuery(document).ready(function() {

否则您可以使用window.commonPass。在浏览器中工作时,window是javascript的“全局”变量。 Javascript的变量存在于它们声明的函数范围内(如果在函数外部,则为window)。