如何使用JavaScript更改网页内容?

时间:2014-03-17 14:43:10

标签: javascript asp-classic

我想使用JavaScript更改(Classic-ASP)网页。对不起,我必须......

页面如下:

<input maxlength='30' id='InputX1' type='text' ...>&nbsp;

<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' ...>&nbsp;
            <input type='text' class='clsComboboxWithBorder required' id='InputX2' ...>
        </td>
    </tr>
</table>

您需要哪些代码?是吗?

1 个答案:

答案 0 :(得分:-1)

使用jQuery,它将是:

$('#InputX2').parent().prepend($('#InputX1'));