DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 得到jQuery detach()後節點中的某個值實現代碼
得到jQuery detach()後節點中的某個值實現代碼
編輯: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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved