摘要: /** * @description transform emotion image url between code * @author x.radish * @param {String} html the html contents * @return {String} */ transformImg:function (html) { var imgReg = //g; var codeReg = /\[:(\d{1,3}):\]/g; if (imgReg.test(html)) { html = html.replace(imgReg, function (m... 阅读全文
posted @ 2013-06-27 15:18 x.radish 阅读(298) 评论(0) 推荐(0) 编辑