欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-14 10:29:47
需要jquery -detach 后的dom 结构或某个值 。 . 代码如下:

需要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>