简单的js替换并返回文本?

时间:2012-07-20 18:39:50

标签: javascript

这可能很简单,我想用空格(空格)替换_(下划线)并返回文本。看看我的尝试.. http://jsfiddle.net/NcG78/

这是来自小提琴的代码:

function formatNice(text) {
    $(function() {
        var new = text.replace('_', ' ');

        return new;
    });
}​

1 个答案:

答案 0 :(得分:0)

删除不需要的jQuery!

没有必要......

只是做:

function formatNice(text) {
   var newt = text.replace('_', ''); //can't use `new` as a variable name.
                                     //it is a "reserved word"
   return newt;
}​