-1

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

这是小提琴的代码:

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

        return new;
    });
}​
4

1 回答 1

0

删除不需要的 jQuery!

没有必要......

做就是了:

function formatNice(text) {
   var newt = text.replace('_', ''); //can't use `new` as a variable name.
                                     //it is a "reserved word"
   return newt;
}​
于 2012-07-20T18:41:54.403 回答