1

看看我的代码:

// 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 都应该具有来自函数的值。但是返回一个空的 div。

请帮忙?

4

2 回答 2

0

尽管此代码可以改进很多,但我尝试在此处解决您的第一个直接问题

你想每次点击都附加结果吗?加盟在哪里? 您是要加入键还是值?我假设现在你想要的是价值而不是钥匙。

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('||||'));
}

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


这是您正在做的一个更清晰的示例。为了进一步改进它,我需要知道你的链接和参数要去哪里。

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('||||'));
    };

}([]));

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

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('||||'));
    };

}({}));
于 2013-01-28T22:20:56.500 回答
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 相比是这样。

于 2013-01-28T22:25:36.557 回答