jquery 몇 가지 쓰기 형식

1482 단어 javascriptjquery
몇 가지 서식을 써서 기록해 주시오
        //  
	$(document).ready(function(){
		document.write("test1", "
"); }); // $().ready(function(){ document.write("test2", "
"); }); // $(function(){ document.write("test3", "
"); }); // DOM ready() jQuery(function(){ document.write("test4", "
"); }); // jQuery(document).ready(function(){ document.write("test5", "
"); }); $(document).ready(function(){ (function(){ document.write("aaa", "
"); })(jQuery); // ; , ; (function(){ document.write("bbb", "
"); })(); (function(str){ document.write(str, "
"); })("output"); // : function OutPutFun(str){ document.write(str, "
"); }; OutPutFun("output"); });

 
    FunTest = (function(){
		function f1(){
			document.write("function1", "
"); }; return ({ f2 : function(){ f1(); document.write("function2", "
"); }, f3 : function(){ document.write("function3", "
"); } }); })(); FunTest.f2(); FunTest.f3(); Person = { name : "zhangsan", age : 20, getName : function(){ document.write(this.name, "
"); } }; Person.getName();

좋은 웹페이지 즐겨찾기