2015年6月10日

创建渐进式jpeg图片

摘要: http://blog.jobbole.com/44038/ 阅读全文

posted @ 2015-06-10 11:53 冯亮 阅读(722) 评论(0) 推荐(0) 编辑

2015年2月13日

jquery实现文字选择器

摘要: $("div:contains('John')").css("text-decoration","underline"); 阅读全文

posted @ 2015-02-13 10:57 冯亮 阅读(1379) 评论(0) 推荐(0) 编辑

2015年2月7日

通过属性集名称获取属性集id

摘要: Mage::getModel('eav/entity_attribute_set')->load('属性集名称', 'attribute_set_name')->getAttributeSetId(); 阅读全文

posted @ 2015-02-07 11:37 冯亮 阅读(219) 评论(0) 推荐(0) 编辑

2014年11月24日

Item with the same id "98" already exist

摘要: 在magento项目中多次遇到这样一个错误:Item (Bluecom_Onefieldusername_Model_Customer) with the same id "98" already exist解决方案:(1) 新建一个类,必须继承Varien_Objectclass Mypackag... 阅读全文

posted @ 2014-11-24 14:27 冯亮 阅读(337) 评论(0) 推荐(0) 编辑

2014年11月10日

调magento自定义模板发邮件

摘要: 1. 设置邮件模板 ActiveCodeline custom email module activecodeline_custom_email1.html html ... 阅读全文

posted @ 2014-11-10 15:30 冯亮 阅读(1145) 评论(0) 推荐(0) 编辑

2014年9月4日

匹配数字逗号字符串的正则式

摘要: $pattern = '/.*\,?(10)\,?.*/';或者$pattern = '/(?:.+\,|^)(10)(?:\,.+|$)/'或者((10)\,.*)|(.*\,(10)\,.*)|(.*\,(10))|(10)oattern正则式可以匹配如下字符串中的数字10(1) '15,100... 阅读全文

posted @ 2014-09-04 15:48 冯亮 阅读(2211) 评论(0) 推荐(0) 编辑

2014年8月19日

剖析magento中关于Email模板的设置

摘要: public function send() { $emailTemplate = Mage::getModel('core/email_template'); // Send all emails from corresponding list while (!empty($this->_emai... 阅读全文

posted @ 2014-08-19 19:10 冯亮 阅读(807) 评论(0) 推荐(0) 编辑

在magento中发邮件

摘要: 1. 在system->Configuration->Store Email Addresses中设置General Contact的Sender Name、Sender Email。 Sender Name是邮件的发件人,Sender Email是发件人的邮件地址2. 在system->Conf... 阅读全文

posted @ 2014-08-19 18:58 冯亮 阅读(3107) 评论(0) 推荐(0) 编辑

使用after伪类清除浮动

摘要: 使用after伪类清除浮动.department li:after{content:".";height:0;visibility:hidden;display:block;clear:both;} 阅读全文

posted @ 2014-08-19 14:19 冯亮 阅读(199) 评论(0) 推荐(0) 编辑

2014年8月15日

web中使用扫描枪

摘要: 扫描枪实际上就是一输入设备,只不过它每次在输入的内容后面添加一个回车。因此在web中可以使用js监听回车事件。处理代码如下:jQuery(function() { jQuery(document).on('keydown','.card_number', function(e){ e = e|... 阅读全文

posted @ 2014-08-15 11:11 冯亮 阅读(9220) 评论(1) 推荐(3) 编辑

导航