这可能很简单,我想用空格(空格)替换_
(下划线)并返回文本。看看我的尝试.. http://jsfiddle.net/NcG78/
这是来自小提琴的代码:
function formatNice(text) {
$(function() {
var new = text.replace('_', ' ');
return new;
});
}
答案 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;
}