我想使用JavaScript更改(Classic-ASP)网页。对不起,我必须......
页面如下:
<input maxlength='30' id='InputX1' type='text' ...>
<table class='CustomSelectTable' id='CustomTableY' ...>
<tr>
<td style='height: 20px;'>
<input type='text' class='clsComboboxWithBorder required' id='InputX2' ...>
</td>
</tr>
</table>
实际上他们是两个这样的变量:
sInputVal = "<input maxlength..."
sTalbeVal = "<table class..."
我想改变它:
<table class='CustomSelectTable' id='CustomTableY' ...>
<tr>
<td style='height: 20px;'>
<input maxlength='30' id='InputX1' type='text' ...>
<input type='text' class='clsComboboxWithBorder required' id='InputX2' ...>
</td>
</tr>
</table>
您需要哪些代码?是吗?
答案 0 :(得分:-1)
使用jQuery,它将是:
$('#InputX2').parent().prepend($('#InputX1'));