我的.split();
方法有问题。
我称这个函数为:
get_content_ajax("html/settings.html", "#ajax", 1, "Settings page have been loaded.", "place_settings", "'settings', 'api_username', 'api_password', 'hmm, ja', 'settings'");
以下是相关功能:
function get_content_ajax(load, element, set_status, status, success_function, success_function_values) {
element = typeof element !== 'undefined' ? element : "#ajax";
set_status = typeof set_status !== 'undefined' ? set_status : 0;
status = typeof status !== 'undefined' ? status : "";
success_function = typeof success_function !== 'undefined' ? success_function : null;
success_function_values = typeof success_function_values !== 'undefined' ? success_function_values : "";
$("#work-station").load(load, function(response, status, xhr) {
if (status == "success") {
if (set_status == 1) {
insert_to_element(element, response);
stop_loading_img("loader");
start_loading_img("done");
set_loading_status(status);
if (success_function != null && success_function != 0) {
window[success_function](success_function_values);
}
}
} else { // status = "error"
no_connection();
}
});
}
function place_settings(id, settings, default_values, page) {
var s = settings.split(', ');
var d = default_values.split(', ');
$.each(s, function(index, value) {
//alert(index + ': ' + value + " - default value: " + d[index]);
insert_to_element("#" + id + " .", get_setting(value, d[index]));
});
}
然后我运行它,我收到以下错误:
Uncaught TypeError: Cannot call method 'split' of undefined
我注意到,id
出于某种原因,该变量具有来自所有变量的所有信息。希望这可以帮助。
OBS:我希望我的代码和我的问题一样有意义。