一. CSS小tip
二. JQ小tip
          for (var p in person) {
               if (person.hasOwnProperty(p)) {
                    console.log(person[p]);
               }
          }
               if (typeof LoadingEnd === "function") {      
                    LoadingEnd();
                }
               jQuery.support.cors = true;
              $.ajax({    
                  type: "POST",     
                  url: url_post,
                  crossDomaintrue,
                  successfunction (result) {}
                  }     
              });
               eval(“var a = 2”);     
               console.log(a);//输出2
               var Myfunction = {
                    something: " mything ",
                    doSometing: function( ) {
                         // …...
                    }
               }     
               (function foo(){
                    //…...
               })();//这样这个函数表达式将自动运行,并且形成一个独立的作用域

               function dosomething(){
                    let a = 10;
               }     
               console.log(a);//访问错误

function loadCss( url ){
var link = document.createElement( "link" );
link.type = "text/css";
link.rel = "stylesheet";
link.href = url;
document.getElementsByTagName( "head" )[0].appendChild( link );
};