首页 > 代码库 > javascript的with使用
javascript的with使用
说明
with 语句可以方便地用来引用某个特定对象中已有的属性,但是不能用来给对象添加属性。要给对象创建新的属性, 必须明确地引用该对象
示例
<html> <head> <script type="text/javascript"> function validate_email(field,alerttxt){ with (field){ apos=value.indexOf("@") dotpos=value.lastIndexOf(".") if (apos<1||dotpos-apos<2) { alert(alerttxt);return false }else { return true } } } function validate_form(thisform){ with (thisform){ if (validate_email(email,"Not a valid e-mail address!")==false){ email.focus(); return false } } } </script> </head> <body> <form action="submitpage.htm"onsubmit="return validate_form(thisd);" method="post"> Email: <input type="text" name="email" size="30"> <input type="submit" value="http://www.mamicode.com/Submit"> </form> </body> </html>
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1902348
javascript的with使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。