如何获取从ajax调用接收的HTML标记的值

时间:2022-11-26 23:29:54

I am receiving below html from vbscript page by ajax call.

我通过ajax调用从vbscript页面接收html以下。

<html>
<body>
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tbody>
            <tr>
                <td width="100%" valign="top">
                    <div id="xyz"></div>
                    <input name="a1" type="hidden" value="">
                    <input name="a2" type="hidden" value="586546d5">
                    <input name="a3" type="hidden" value="13025">
                    <br clear="all">
                </td>
            </tr>
        </tbody>
    </table>
</div>
</body>
</html>

Is it possible to get value of input tag where name="a2" in ajax. i.e we want value 586546d5 in the variable.

是否有可能获得ajax中name =“a2”的输入标记的值。即我们希望变量中的值为586546d5。

2 个解决方案

#1


0  

You can convert html string into jquery object and then get element in it:

你可以将html字符串转换为jquery对象,然后在其中获取元素:

$(returnehtml).find('[name=a2]').val();

#2


0  

use query selector

使用查询选择器

document.querySelector('input[name=a2]').value

#1


0  

You can convert html string into jquery object and then get element in it:

你可以将html字符串转换为jquery对象,然后在其中获取元素:

$(returnehtml).find('[name=a2]').val();

#2


0  

use query selector

使用查询选择器

document.querySelector('input[name=a2]').value