让通过w3c验证的三种方法

综合自经典论坛

目前有三种方式让<>能够通过w3c(这个<>是指document.write元素时的元素标记,而不是js的逻辑运算符):

hutia:

document.write(String.fromCharCode(60)+"img .../"+String.fromCharCode(62));


mirycat:

//<![CDATA[
document.write("<img .../>");
//]]>


bound0:

document.write("/x3Cimg ...//x3E");


你可能感兴趣的:(c)