我有一个javascript函数,每26个字母后强制一个空格
function nospaces(t)
{
if(t.value.match(/\S{27}/g))
{
//alert('Sorry, you can not enter a word more than 26 characters long');
t.value[5]=t.value.replace(/\S{27}/g,'');
}
}
现在我希望用户输入的每个第 27 个字母而不是空格应该替换为空格