$.trim(str)

jQuery内部实现为:

function trim(str){
  return str.replace(/^(\s|\u00A0)+/,'').replace(/(\s|\u00A0)+$/,'');
}

使用JS和JQuery 阻止表单提交的两种方法

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>JavaScript禁止提交表单</title>
<script type="text/javascript">
function getObj(id){
  var Obj = document.getElementById(id).value;
  return Obj;
}
function check(){
  if(getObj("test")==""){
    alert("文本框输入为空,不能提交表单!");
    document.getElementById("test").focus;
    return false;//false:阻止提交表单
  }
}
</script>
</head>
<body>
<form action="index.htm" method="post" onsubmit="return check()">
  <input type="text" name="test" id="test">
  <input type="submit" value="提交">
</form>
</body>
</html>

以上所述是小编给大家介绍的JS去掉字符串前后空格、阻止表单提交的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

02-08 11:12