我需要在元素中找到一个表单标签并复制它。我觉得我已经很接近了,但还不是很接近。他是我到目前为止所拥有的:
JS
if ($('#myElement').find('form').length > 0) {
var myFormTag= $('#myElement').find('form').html();
}
HTML
<div id="myElement">
<h1>
blah
</h1>
<form action="blah.php" method="post">
<table>
<tr>
<td>
<select>
<option>option
</select>
</td>
<td>
<input type="text">
</td>
</tr>
</table>
</form>
</div>
我只需要返回开始标签:
<form action="blah.php" method="post">