内爆阵列无法按预期工作

时间:2013-01-28 21:44:51

标签: javascript jquery arrays join

看看我的代码:

// is_array function
function is_array(input){ return typeof(input)=='object'&&(input instanceof Array); }

// Check if cos_in is an array. If is not, create him
if(!is_array(cos_in))
{
    var cos_in = new Array();
}

// Onclick function
function cos(pret,box,configuratie)
{
    // Create a value (is different on every click; using different box)
    cos_in[box] = box + '|||' + pret + '|||' + configuratie + '||||';

    // Insert values from array in some div with #cos id
    $("#cos").html(cos_in.join('||||'));
}

我的问题是id为#cos的div从起始值“test-empty”开始,并且每次执行onclick函数时,div应该具有来自function的值。但是返回一个空div。

请帮忙吗?

2 个答案:

答案 0 :(得分:0)

虽然这段代码可以改进很多,但我尝试修复你的第一个直接问题here

您是否想在每次点击时附加结果?加入在哪里? 您是否尝试加入密钥或值?我认为您现在想要的是价值而不是密钥。

window.cos_in = window.cos_in && window.cos_in instanceof Array ? window.cos_in : []

// Onclick function
function cos(pret,box,configuratie)
{
    // Create a value (is different on every click; using different box)
    cos_in.push(box + '|||' + pret + '|||' + configuratie + '||||');

    // Insert values from array in some div with #cos id
    $("#cos").html(cos_in.join('||||'));
}

让我迭代一下,以获得可读/可理解的东西。


以下是您正在做的清洁工example。为了进一步改进它,我需要知道你的链接和参数在哪里。

var cos = (function (cos_in) {

    return function cos(pret, box, configuratie) {
        // Create a value (is different on every click; using different box)
        cos_in.push(box + '|||' + pret + '|||' + configuratie + '||||');

        // Insert values from array in some div with #cos id
        $("#cos").text(cos_in.join('||||'));
    };

}([]));

这是对象版本的example而不是数组...

var cos = (function (cos_in) {

    return function cos(pret, box, configuratie) {
        // Create a value (is different on every click; using different box)
        cos_in[box] = (box + '|||' + pret + '|||' + configuratie + '||||');

        // Insert values from array in some div with #cos id
        $("#cos").text(Object.keys(cos_in).join('||||'));
    };

}({}));

答案 1 :(得分:0)

这是一个你可以使用的简单包装器:

function join(input, str) {
    if(typeof(input) === 'object') {
        if(input instanceof Array) {
            return input.join(str);
        } else {
            var tmp = [];
            for(var x in input) {
                if(input.hasOwnProperty(x)) {
                    tmp.push(input[x]);
                }
            }
            return tmp.join(str);
        }
    }
    return input;
}

/* ... */

$("#cos").html( join(cos_in, '||||') );

但是,您确实需要区分不同的语言。 JavaScript可能无法按预期工作,至少与PHP相比。