我想计算的细胞数量,作为一个表中的不同部分移动滑动条得到更新的值。 我目前储存的价值定义它之后,但它需要更新。
我试着定义是这样的:平变化=“myFunction的()”,其中myFunction的将重新定义变量,但没有奏效。
我认为,解决的办法是插入下一些initialized: function (table)
的代码区域的动态更新(这我不知道该怎么做),但后来不知何故,需要引用已经定义的另一个小区使用此更新值,需要将其先前初始化....
我会停下来漫步。 一些帮助,将不胜感激。
这里是我的代码:
$(function () {
DataArray = [];
tempor = [];
DataArray.push(['test_01', 'test_02', 'test_03', 'test_04', 'test_05']);
tempor.push(1);
tempor.push( '<input name="a" type="range" min="0" max="5" value="0" onchange="ChangeFunction()"/>'
+ '<br>'
+ '<output name="OutputValue">0</output>');
var xcomp = document.getElementById("OutputValue");
tempor.push(3);
tempor.push(4*xcomp);
tempor.push(5);
for (var i = 0; i < 4; i++) {
DataArray.push(tempor);
}
DataArray.push(['test_01', 'test_02', 'test_03', 'test_04', 'test_05']);
$('#namehere').tablesorter({debug: true,
theme: 'blue',
widgetOptions: {
build_type: 'array',
build_source: DataArray,
build_headers: {
rows: 1, // Number of header rows from the csv
classes: [], // Header classes to apply to cells
text: [], // Header cell text
widths: [] // set header cell widths
},
build_footers: {
rows: 1, // Number of header rows from the csv
classes: [], // Footer classes to apply to cells
text: [] // Footer cell text
}
},
initialized: function (table) {
$('#namehere').on('change', 'input', function () {
var $input = $(this),
// don't allow resort, it makes it difficult to use the slider
resort = false;
$input.parent().find('output').html($input.val());
$(table).trigger('updateCell', [ $input.closest('td'), resort ]);
});
}
});
});