我的网站上有以下表格
input a
input b
input c
是否可以使用 jQuery 完成以下操作?
input a
input c
input b
请记住,表单仍然需要正确收集数据。
请指教。
我的网站上有以下表格
input a
input b
input c
是否可以使用 jQuery 完成以下操作?
input a
input c
input b
请记住,表单仍然需要正确收集数据。
请指教。
是的,这是可能的,虽然使用相同的技术,但使用id
s 更容易,但如果您只知道要移动哪一个,那么:
$('input:text:nth-child(3)').insertAfter($('input:text:nth-child(1)'));
JS Fiddle of id
-based 方法(由 Vega 慷慨提供)。
或者,类似地:
$('input:text:nth-child(3)').appendTo($('input:text:nth-child(1)').parent());
参考: