摘要:
1 2 (Select Max([" & FldName & "])" 9 StrOrder = " Order By [" & FldName & "] Asc"10 Else11 StrTemp = " "" Then19 Strtmp = " Where " & StrWhere20 End If21 S... 阅读全文
posted @ 2005-10-26 08:45 逍遥游 阅读(313) 评论(0) 推荐(0)
|
|||
摘要:
1 2 (Select Max([" & FldName & "])" 9 StrOrder = " Order By [" & FldName & "] Asc"10 Else11 StrTemp = " "" Then19 Strtmp = " Where " & StrWhere20 End If21 S... 阅读全文
posted @ 2005-10-26 08:45 逍遥游 阅读(313) 评论(0) 推荐(0)
摘要:
1第一次发现JavaScript中replace() 方法如果直接用str.replace("-","!") 只会替换第一个匹配的字符. 2而str.replace(/\-/g,"!")则可以替换掉全部匹配的字符(g为全局标志)。 3 4 5replace() 6The replace() method returns the string that results when you re... 阅读全文
posted @ 2005-10-26 08:44 逍遥游 阅读(224) 评论(0) 推荐(0) |
|||