js 元素Dom新建并插入页面createElement

纯js

var o = document.createElement('script');
o.type = 'text/template';
o.id = 'demo';
document.documentElement.childNodes[].appendChild(o);

jquery

$("<script type='text/template'>").attr('id', id + '_template').appendTo("body").load(url, function (tpl) {
  cb(tpl);
});
上一篇:[EffectiveC++]item41:了解隐式接口和编译器多态


下一篇:ACM/ICPC 之 枚举(POJ1681-画家问题+POJ1166-拨钟问题+POJ1054-讨厌的青蛙)