公司名称 杭州如果网络科技有限公司
职位名称 PHP工程师
招聘人数 3
工作地点 杭州市西湖区剑桥公社E座
薪水待遇 6K~8K
职位描述 1、要求1年以上PHP+MySQL实际开发经验.
2、精通PHP技术,mysql技术,熟悉MVC模式。
3、熟悉网络广告代码,投放统计结算,有电子商务网站经验。
4、有过微博、贴吧、SNS社区的编程经验者优先;
5、具有良好的沟通能力,理解力强,有团队合作意识,具有敬业负责的精神;
7、工作认真积极,态度良好,能适应临时项目的赶工
主管要求
1、要求3年以上PHP+MySQL实际开发经验,追求程序的高效,对于大流量和高负载情况下的程序设计非常熟悉;
2、精通PHP技术,mysql技术,熟悉MVC模式,能用OOP进行项目开发;有PHP缓冲,静态化设计方面的经验,能独立开发后台。
3、熟悉网络广告代码,投放统计结算,有电子商务网站经验,有制作支付接口的经验;
4、有过微博、贴吧、SNS社区的编程经验者优先;
5、要求能管理整个技术团队,做好工作分配。专业的文档编写能力,提供进度安排,进展情况,解决技术难题,负责技术支持;
6、具有良好的沟通能力,理解力强,有团队合作意识,具有敬业负责的精神;
板块
标签
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市场上的手机应用软件。同时,我们也为企业内部互联网和电子商务网站,创作共性化的以及客户化的在线的解决方案。
标签
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
板块
标签
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市场上的手机应用软件。同时,我们也为企业内部互联网和电子商务网站,创作共性化的以及客户化的在线的解决方案。
标签
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
板块
标签
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市场上的手机应用软件。同时,我们也为企业内部互联网和电子商务网站,创作共性化的以及客户化的在线的解决方案。
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
板块
在drupal7创建多语言版本时,节点内容有语言选项,而主菜单,没有语言选项,因此也不能根据语言自动出现相应的版本,应该如何解决?
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