[CODE]<html> <body> <form name="form1"> <input type="text" id="txtShow" > <input type="button" onClick="Init()" value="Value Show!"> <input type="button" onClick="Init2()" value="innerText Show!"> </form> <div id="txtShowDIV"></div> </body> </html>
<script language=javascript> function Init() { document.form1.txtShow.value="hello"; } function Init2() { txtShowDIV.innerText="hello"; } </script>[/CODE]
[CODE]<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>New Page 1</title>
<script language=javascript> function addText() { txtShow.style.visibility ="visible"; } function showIt() { alert("这样做可以吗???"); } </script>
</head> <body> <p><input type="button" value="Add Text" name="B3" onClick="addText()"></p> <form name="form1"> <div id="txtShow" style="visibility:hidden;position:absolute" ><input type="text" name="T1" size="20" onChange="showIt()"> </div> </form>
</body> </html>[/CODE]