得到jQuery detach()后节点中的某个值实现代码
更新时间:2013年02月05日 10:37:23 作者:
需要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>
复制代码 代码如下:
<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>
相关文章
JQuery Dialog对话框 不能通过Esc关闭的原因分析及解决办法
这篇文章主要介绍了JQuery Dialog对话框 不能通过Esc关闭的原因分析及解决办法,需要的朋友可以参考下2017-01-01jQuery实现滑动页面固定顶部显示(可根据显示位置消失与替换)
这篇文章主要介绍了jQuery实现滑动页面固定顶部显示,还可根据显示位置消失与替换对应的当前显示项,具有一定参考借鉴价值,需要的朋友可以参考下2015-10-10
最新评论