在javascript函数构建div之后修改CSS的正确标记是什么?我熟悉使用 jquery .css()
,但是,我不确定如何在 js 完成加载其资源时创建事件处理程序。javascript 来自第三方,看起来像这样 - 它还创建了可怕的内联样式:
<script type="text/javascript">
function jsfunction(){
var x = (content);
var y = document.createElement("script");
js.setAttribute("language", "javascript");
js.setAttribute("type", "text/javascript");
js.setAttribute("src",x + "scriptUrl");
document.getElementsByTagName("head").item(0).appendChild(js);
}
if (window.attachEvent) {window.attachEvent("onload", jsfunction);}
else if (window.addEventListener) {window.addEventListener("load", jsfunction, false);}
else {document.addEventListener("load", jsfunction, false);}
</script>