<![CDATA[,]]>の意味がわかりません。
下はあるxmlファイルの一部分ですが、<![CDATA[は何を意味しているのでしょうか?
検索してみると、「<や>を文字として使うため」とありましたが、下の<![CDATA[,>]]>で囲まれた部分には<,>は含まれていません。
<script type="application/x-javascript">
<![CDATA[
// script courtesy of a bookmarklet found here:
// http://bookmarklets.com/tools/data/index.phtml
function count(){
wordcount=content.document.getSelection().replace(/\s/g,' ').replace(/ {2,}/g,' ').replace(/ $|^ /g,'').split(' ');
if(wordcount!=''){
alert(wordcount.length+' words in selected text.')
}
else{
alert('Select some text first!')
}
}
window.addEventListener("load", countInit, true);
// hides the item when appropriate (use same logic as for Back, Stop etc.)
// script written by Stephen Clavering, used in his goHome extension
function countInit() {
document.getElementById("contentAreaContextMenu").addEventListener("popupshowing",countHide,false);
}
function countHide() {
var cm = gContextMenu;
document.getElementById("wordcount").hidden = !cm.isTextSelected;
}
]]>
</script>
お礼
納得しました。 ありがとうございます!