我想通过分别使用上面的元素和下面的元素来上下移动表格元素。但是,我的代码不起作用。以下是downButton的JS函数。
var downButton = document.getElementsByClassName('downButton')[0];
downButton.onclick = function moveDown(currentRow) {
var index = currentRow.parentNode.parentNode.rowIndex;
var nextRow = currentRow.nextElementSibling.parentNode.parentNode.rowIndex;
var temp = index;
index = nextRow;
nextRow = temp;
}
这是向下按钮的html:
<button class = "downButton">down</button>
这是表格的JSFiddle链接:https://jsfiddle.net/Led4b3nw/
答案 0 :(得分:0)
交换innerHTML而不是索引:
public function update(Request $request,Filesystem $file, $id)