看看我的代码:
// 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。
请帮忙?