[置顶] web前端开发笔记(二)

1.美化checkbox和radio
icheck
虽然看github上这个项目已经一年没更新了,但是样式还是不错的,就拿来用了。

2.switch在作对比时用的是全等运算。

3.javascript中实现继承的方法
1)通过prototype实现
2)通过Object.create()实现
3)es6方法,通过class实现

3.动态加载script标签,加载完成事件

var script= document.createElement("script");
document.head.appendChild(script);
script.onload = scriptLoaded;
script.onreadystatechange = scriptLoaded;
script.src = "script.js";

function scriptLoaded() {
    if (!this.readyState || this.readyState === "loaded" || this.readyState === "complete") {
        script.onload = script.onreadystatechange = null;
        console.log("loaded");
    }
}

原链接

你可能感兴趣的:(web前端开发)