Gurus、CDATAの意味は?
私は独学です。あなたの何かがたくさんあります啓蒙されたもの電話私は何も知りません。ここに示したように(上から3行目)「CDATA」:このjQuery Tutorialを読む
は、私が(もっと良い言葉の欠如のために)このタグに気づい
<script src="http://jquery.com/src/jquery-latest.js"></script>
<script>
//<![CDATA[
$(document).ready(function(){
$(".article .thebody").hide();
$("#container .article ul")
.prepend("<li class='readbody'><a href='' title='Read the article'>Read Body</a></li>");
$(".actions li.readbody a").click(function(event){
$(this).parents("ul").prev(".thebody").toggle();
event.preventDefault();
});
});
//]]></script>
CDATAの意味は何ですか? CDATAに類似したタグはありますか? <![CDATA[
で
CDATAです。 CDATAを実行します。データを実行する! –