高程笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高程笔记相关的知识,希望对你有一定的参考价值。
1、creatTextNode兼容
function fn(code){
var script = document.createElement("script");
script.type = "text/javascript";
try{
script.appendChild(document.createTextNode(code)); //IE9下不兼容
}catch(ex){
script.text = code ;
};
document.body.appendChild(script);
};
fn("alert(1)");
以上是关于高程笔记的主要内容,如果未能解决你的问题,请参考以下文章
JS高程读书笔记-第一二章-内附在线思维导图和quizlet卡片