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