gpt4 book ai didi

Javascript:如何分配给变量?

转载 作者:行者123 更新时间:2023-11-28 13:33:48 25 4
gpt4 key购买 nike

我有以下代码:

$('#sample_1').dataTable({
"aoColumns": [
{ "bSortable": true },
null,
null,
null,
{ "bSortable": false }
],
"aLengthMenu": [
[10, 30, 100, -1],
[10, 30, 100, "Alle"] // change per page values here
],
// set the initial value
"iDisplayLength": 30,
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ Einträge",
"sSearch": "Suche: ",
"sInfo": "Einträge _START_ bis _END_ von insgesamt _TOTAL_ angezeigt",
"oPaginate": {
"sPrevious": "Vorherige",
"sNext": "Nächste"
}
}
});

我想重用其他表中的一些参数,从而将其分配给一个变量。我尝试过:

myVar = {// set the initial value
"iDisplayLength": 30,
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ Einträge",
"sSearch": "Suche: ",
"sInfo": "Einträge _START_ bis _END_ von insgesamt _TOTAL_ angezeigt",
"oPaginate": {
"sPrevious": "Vorherige",
"sNext": "Nächste"
}
}};
$('#sample_1').dataTable({
"aoColumns": [
{ "bSortable": true },
null,
null,
null,
{ "bSortable": false }
],
"aLengthMenu": [
[10, 30, 100, -1],
[10, 30, 100, "Alle"] // change per page values here
],
myVar
});

但这不起作用。你能给我一些建议吗?尝试谷歌搜索,但不知道这个construct是如何被调用的,那些不是简单的数组吗?编辑:似乎是某种对象,但是如何实际将该对象的属性作为参数传递给 dataTable?

非常感谢

最佳答案

你就快到了。

您正在尝试使用一个对象分配 3 个参数。

像这样的事情就可以了。

var myVar = {
"iDisplayLength": 30,
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ Einträge",
"sSearch": "Suche: ",
"sInfo": "Einträge _START_ bis _END_ von insgesamt _TOTAL_ angezeigt",
"oPaginate": {
"sPrevious": "Vorherige",
"sNext": "Nächste"
}
}
};

$('#sample_1').dataTable({
"aoColumns": [
{ "bSortable": true },
null,
null,
null,
{ "bSortable": false }
],
"aLengthMenu": [
[10, 30, 100, -1],
[10, 30, 100, "Alle"] // change per page values here
],
"iDisplayLength": myVar.iDisplayLength,
"sPaginationType" myVar.sPaginationType,
"oLanguage": myVar.oLanguage
});

关于Javascript:如何分配给变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22908482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com