见标题。看到下面的变量,我怎样才能用其他字符串替换所有的 '%s'?
var s = 'qwer%sqwer%s';
请指教
见标题。看到下面的变量,我怎样才能用其他字符串替换所有的 '%s'?
var s = 'qwer%sqwer%s';
请指教
使用.replace
方法。
var s = 'qwer%sqwer%s';
s = s.replace(/%s/g, 'other');
试试这个:
s.replace(/%s/g,'x')
您可以使用 replace() 函数替换字符串 Ex。
var getnewstring = s.replace("%s","YOUR STRING");
使用 .replace 方法
var s = 'qwer%sqwer%s';
s=s.replace('%s','your string')
document.write(s);