在空间验证后将重点放在文本的最后一个字符上

时间:2013-03-07 14:42:07

标签: javascript

我希望在空白验证后将焦点放在文本的最后一个字符上。焦点不会在最后一个元素上结束。请查看代码并向我建议任何更改。

var pattern=/^\s|\s$/;
var textentered=document.textentered.text.value;
if(textentered.match(pattern))
{
  alert("Spaces are not allowed");
  textentered.focus();
  return false;
}

由于

1 个答案:

答案 0 :(得分:1)

我想你想要

document.textentered.text.focus();

目前,您正在尝试关注价值,而不是元素。