jquery怎麼獲取整個...包涵中的所有程式碼
阿新 • • 發佈:2019-02-06
jquery怎麼獲取整個<DIV>...</DIV>包涵中的所有程式碼
比如:獲取紅色部分<div id="test" style="background-color:red;100px; height:100px;"><h2 style="color:white;">Test</h2></div>
<html>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
//alert($(document.body).html());//獲取包括div的內容
alert($("#test").html ()); //僅獲取div下級內容
});
</script>
<body>
<div id="test" style="background-color:red;100px; height:100px;"><h2 style="color:white;">Test</h2></div>
</body>
</html>