如何将此coffeescript转换为js / jquery?

时间:2013-08-30 17:42:32

标签: javascript jquery coffeescript

text = child.html()
text = text.replace /(#include(\s*&lt;.*&gt;)?)/gi, '<span>$1</span>'
text = text.replace /(main\(.*\))/gi, '<span>$1</span>'
child.html text

http://jsfiddle.net/dcro/XKHC8/

这是我的问题的答案:Wrapping strings with a span我不知道如何使用coffeescript和回答的人看起来不可用。

1 个答案:

答案 0 :(得分:1)

来自js2coffee.org

var text;

text = text.replace(/(#include(\s*&lt;.*&gt;)?)/gi, '<span>$1</span>');

text = text.replace(/(main\(.*\))/gi, '<span>$1</span>');

child.html(text);