<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>01.html</title>
<meta http-equiv="keywords"
content="keyword1,keyword2,keyword3">
<meta http-equiv="description"
content="this is my page">
<meta http-equiv="content-type"
content="text/html; charset=UTF-8">
<!--<link rel="stylesheet"
type="text/css"
href="./styles.css">-->
<script type="text/javascript">
function
$(id){
return
document.getElementById(id);
}
function
alter(){
var
shou;
var
wei;
var
sq="";
var
zf=$("zifu").value;
var
result=zf.split(" ");
for(var
i=0;i<result.length;i++){
shou=result[i].substring(0,1).toUpperCase();
wei=result[i].substring(1,result[i].length);
sq+=shou+wei+" ";
}
alert(sq);
}
</script>
</head>
<body>
<div>
<input type="text"
id="zifu"/> <input type="button"
value="变换"
onclick="alter()"/>
</div>
</body>
</html>