JQuery獲取當前元素本身

菜雞03號發表於2016-09-11
<div id="content">
    <p>嗎為</p>
    <button type="button" id="btn">按鈕</button>
  </div>

jquery程式碼
$("document").ready(function(){
	  $("#btn").click(function(){
		  var s;
		 s=$("#content").prop('outerHTML');
		$("#content").append(s);
	  });
  });

相關文章