当前位置:主页 > 网页前端 > jquery >

得到jQuery detach()后节点中的某个值实现代码

时间:2021-06-30 09:23:20 | 栏目:jquery | 点击:

需要jQuery -detach 后的dom 结构或某个值 。
复制代码 代码如下:

<body>
<input type="text" value="test" name="showtime" id="showtime" />
<input type="button" onclick='showDetach();'/>
</body>
<script type="text/javascript">
var obj = '';
setTimeout(function(){
obj=jQuery("#showtime").detach() ; // 需要用jquery转换一下。
},1000) ;

function showDetach(){
alert(jQuery(obj).val()) ;
}
</script>
</body>

您可能感兴趣的文章:

相关文章