http://www.csdn.net/Expert/forum.asp?typenum=8&searchKeys=%D5%FD%D4%F2%B1%ED%B4%EF%CA%BD&roomid=27&author=&tabletype=now

解决方案 »

  1.   

    无法显示网页 
    您要访问的网页有问题,无法显示。 --------------------------------------------------------------------------------请尝试以下操作:打开 www.csdn.net 主页,然后查找指向您感兴趣信息的链接。 
    单击刷新按钮,或以后再试。单击搜索,寻找 Internet 上的信息。 
    也可查看相关站点列表。 
    HTTP 500 - 内部服务器错误 
    Internet Explorer  
      

  2.   

    早已经搞定了!var myReg=/[^a-zA-Z0-9]+/
    if(myReg.test("stiedljapeoi#$%^&*")){
    alert("用户名请不要用非a-Z,A-Z,0-9字符!");
    name.focus()
    return false;
    }
      

  3.   

    Description
    Contains a regular expression pattern.
    Syntax 1
    var regularexpression = /pattern/[switch]
    Syntax 2
    var regularexpression = new RegExp("pattern",["switch"]) 
    The regular expression object syntax has these parts: Part Description 
    pattern Required. The regular expression pattern to use. If you use Syntax 1, delimit the pattern by "/" characters. If you use Syntax 2, enclose the pattern in quotation s. 
    switch Optional. Enclose switch in quotation s if you use Syntax 2. Available switches are:
    i (ignore case)
    g (global search for all occurrences of pattern)
    gi (global search, ignore case)/pattern/:
    Character Description:
    \  Marks the next character as special. /n/ matches the character "n". The sequence /\n/ matches a linefeed or newline character.  
    ^  Matches the beginning of input or line. 
    $  Matches the end of input or line. 
    *  Matches the preceding character zero or more times. /zo*/ matches either "z" or "zoo." 
    +  Matches the preceding character one or more times. /zo+/ matches "zoo" but not "z."  
    ?  Matches the preceding character zero or one time. /a?ve?/ matches the "ve" in "never."  
    . Matches any single character except a newline character.  
    (pattern)  Matches pattern and remembers the match. The matched substring can be retrieved from the result Array object elements [1]...[n] or the RegExp object's $1...$9 properties. To match parentheses characters ( ), use "\(" or "\)". 
    x|y Matches either x or y. /z|food?/ matches "zoo" or "food."  
    {n} n is a nonnegative integer. Matches exactly n times. /o{2}/ does not match the "o" in "Bob," but matches the first two o's in "foooood." 
    {n,}  n is a nonnegative integer. Matches at least n times. /o{2,}/ does not match the "o" in "Bob" and matches all the o's in "foooood." /o{1,}/ is equivalent to /o+/. 
    {n,m}  m and n are nonnegative integers. Matches at least n and at most m times. /o{1,3}/ matches the first three o's in "fooooood." 
    [xyz]  A character set. Matches any one of the enclosed characters. /[abc]/ matches the "a" in "plain."  
    [^xyz]  A negative character set. Matches any character not enclosed. /[^abc]/ matches the "p" in "plain."  
    \b  Matches a word boundary, such as a space. /ea*r\b/ matches the "er" in "never early."  
    \B  Matches a nonword boundary. /ea*r\B/ matches the "ear" in "never early."  
    \d  Matches a digit character. Equivalent to [0-9].  
    \D  Matches a nondigit character. Equivalent to [^0-9].  
    \f  Matches a form-feed character.  
    \n  Matches a linefeed character.  
    \r  Matches a carriage return character.  
    \s  Matches any white space including space, tab, form-feed, and so on. Equivalent to [ \f\n\r\t\v] 
    \S  Matches any nonwhite space character. Equivalent to [^ \f\n\r\t\v]  
    \t  Matches a tab character.  
    \v  Matches a vertical tab character.  
    \w  Matches any word character including underscore. Equivalent to [A-Za-z0-9_].  
    \W  Matches any nonword character. Equivalent to [^A-Za-z0-9_].  
    \num  Matches num, where num is a positive integer. A reference back to remembered matches. \1 matches what is stored in RegExp.$1.  
    /n/  Matches n, where n is an octal, hexadecimal, or decimal escape value. Allows embedding of ASCII codes into regular expressions.