跳转到主要内容
匿名 (未验证) 提交于 9 May 2011
WHB is a small getting bigger programming development studio specialized in creating digital tool for international custormers. We mainly focus on developing mobile applications on the iOS - Iphone/ Ipad and Android market. We also create corporate and client customized on line solutions for Intranet, E-commerce sites. The company is based in Shanghai and hires people all over China. Web:http://www.globalit-dev.com Email: Jazlyn.Sau@gmail.com
板块
匿名 (未验证) 提交于 9 May 2011
WHB is a small getting bigger programming development studio specialized in creating digital tool for international custormers. We mainly focus on developing mobile applications on the iOS - Iphone/ Ipad and Android market. We also create corporate and client customized on line solutions for Intranet, E-commerce sites. The company is based in Shanghai and hires people all over China. Web:http://www.globalit-dev.com Email: Jazlyn.Sau@gmail.com 上海万扈商务咨询有限公司是一家逐渐扩大的设计开发工作室,尤其为国际客户创作数码类工具。我们致力于开发iOS - Iphone/ Ipad 和 Android市场上的手机应用软件。同时,我们也为企业内部互联网和电子商务网站,创作共性化的以及客户化的在线的解决方案。
匿名 (未验证) 提交于 9 May 2011
WHB is a small getting bigger programming development studio specialized in creating digital tool for international custormers. We mainly focus on developing mobile applications on the iOS - Iphone/ Ipad and Android market. We also create corporate and client customized on line solutions for Intranet, E-commerce sites. The company is based in Shanghai and hires people all over China. Web:http://www.globalit-dev.com Email: Jazlyn.Sau@gmail.com
板块
匿名 (未验证) 提交于 9 May 2011
WHB is a small getting bigger programming development studio specialized in creating digital tool for international custormers. We mainly focus on developing mobile applications on the iOS - Iphone/ Ipad and Android market. We also create corporate and client customized on line solutions for Intranet, E-commerce sites. The company is based in Shanghai and hires people all over China. Web:http://www.globalit-dev.com Email: Jazlyn.Sau@gmail.com 上海万扈商务咨询有限公司是一家逐渐扩大的设计开发工作室,尤其为国际客户创作数码类工具。我们致力于开发iOS - Iphone/ Ipad 和 Android市场上的手机应用软件。同时,我们也为企业内部互联网和电子商务网站,创作共性化的以及客户化的在线的解决方案。
匿名 (未验证) 提交于 9 May 2011

WHB is a small getting bigger programming development studio specialized in creating digital tool for international custormers. We mainly focus on developing mobile applications on the iOS - Iphone/ Ipad and Android market. We also create corporate and client customized on line solutions for Intranet, E-commerce sites. The company is based in Shanghai and hires people all over China.Web:http://www.globalit-dev.comEmail: Jazlyn.Sau@gmail.com

东方龙马 提交于 6 April 2011

1、加载DOM区别

JavaScript:

window.onload
    function first(){
        alert('first');
    }
    function second(){
        alert('second');
    }
    window.onload = first;
    window.onload = second;
    //只会执行第二个window.onload;不过可以通过以下方法来进行改进:
    window.onload = function(){
        first();
        second();
    }

JQuery:

articles
东方龙马 提交于 17 March 2011

4.break、continue分别与label语句联用分析:

1) break与label语句组合:

var num = 0; outermost: for (i = 0; i <10; i++){     for (j = 0; j <10; j++){         if (i==5 && j==5){             break outermost;         }         num++;     } } alert(num); //num最终输出结果是55。这里使用的是break结合label语句联用,当条件满足时,嵌套的两层循环都会退出。外层每循环一次,里面都会循环10次。当i=5时,前面已经循环了5*10次,然后j执行到5时,内层又循环了5次,故总计55。

 

2)continue与label语句组合:

articles
订阅