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