jQuery.noConflict()
jQuery是目前使用最广泛的前端框架之一,有大量的第三方库和插件基于它开发。为了避免全局命名空间污染,jQuery提供了jQuery.noConflict()方法解决变量冲突。这个方法,毫无疑问,非常有效。遗憾的是,jQuery的官方文档对该方法的描述不够清晰,许多开发者并不清楚当他们调用jQue…
Magento: How to get controller, module, action and router name?
参考案例:http://blog.chapagain.com.np/magento-how-to-get-controller-action-and-module-name-in-template-file/ magento获取Module、Con他roller、Action 等 都在app/cod…
English learn
英语学习网站: https://www.quora.com/ 登录账号为 :google 账号: 421072757@qq.com 密码:
2019-02-12 call me when you are ready
call me when you are ready :当你准备好了,给我打电话或者联系我 I am ready: 我准备好了
jquery bind evet
下面的例子是可以实现的 但是如果要绑定的on方法是动态加载出来的元素,那么这样使用就是没有用的。看下面的例子: 上面例子中.test元素是动态加载的,但是给它绑定click方法的时候,明明使用了 将背景色设为pink,但是没有起作用,什么原因呢,原因就在于.test是动态加载的元素,而使用上面的方法…
SSL integration
http添加ssl 转为https 参考方法 https://www.digitalocean.com/community/tutorials/how-to-install-an-ssl-certificate-from-a-commercial-certificate-authority
2019-01-25 english
performance review :绩效考核 I got your email, thanks! :我收到你的邮件了,谢谢!
Linux centos install Apache
1、下载apache 官网:http://httpd.apache.org/ 使用wget下载: wget http://mirrors.cnnic.cn/apache//httpd/httpd-2.2.32.tar.gz 解压以及安装: [root@localh…
Nginx introduce
Nginx (“engine x”) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。Nginx是由Igor Sysoev为俄罗斯访问量第二的Rambler.ru站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类…
http in post and get
做Web开发就一定会涉及到浏览器和服务器的交互,所以了解浏览器和服务器交互的方式就尤为重要。从接触B/S开始就已经接触到了get和post。 HTTP协议 说道GET和POST,就不得不提HTTP协议,因为浏览器和服务器的交互是通过HTTP协议执行的,而GET和POST也是HTTP协议中的两种方法。…