文章作者 : linkfoxo [ webmaster@cfwindow.com ] Web URL : http://www.cfwindow.com
上载日期 : 2000-12-20
=========================================================
<!-- hide in head tags
function textValueToFirstUpper (inpObj) {
if (-1 == inpObj.value.search(/^[A-Z]/)) {
inpObj.value =
inpObj.value.substr(0, 1).toUpperCase() +
inpObj.value.substr(1);
}
}
// -->
THE INPUT TAGS:
<INPUT maxLength=50
name=Lname
onChange=textValueToFirstUpper(this)
value=#Lname#>
Last Name
<INPUT maxLength=50
name=Fname
onChange=textValueToFirstUpper(this)
value=#Fname#>
First Name
=========================================================
|