在javascript

时间:2016-11-03 10:59:43

标签: javascript html

编辑:我刚刚注意到我试图交换整数,因为我得到了rowIndex。这不是我想要做的。我想交换对象。但是,我真的不知道如何。

我想通过分别使用上面的元素和下面的元素来上下移动表格元素。但是,我的代码不起作用。以下是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/

1 个答案:

答案 0 :(得分:0)

交换innerHTML而不是索引:

public function update(Request $request,Filesystem $file, $id)