假如用jq,可以直接用replaceAll语法进行替换,但是查了Zeptojs的文档,是没有这个属性的,那使用Zeptojs要怎么把逗号“,”替换成“-”,在线求解????
PHPz2017-04-11 11:04:54
var text = $($0).val();
text = text.replace(/,|,/g,'-');
// var text = '使用,Zeptojs,框架怎么替换字符串';
// text = text.replace(/,|,/g,'-'); --> "使用-Zeptojs-框架怎么替换字符串"
黄舟2017-04-11 11:04:54
zepto虽然没有,但是可以使用原生js方法替换字符串啊
var str="hello,world";
str.replace(/,/,"-"); //hello-world
一切框架的本质都是原生javascript