<div class="codetitle"> <span><a style="CURSOR: pointer" data="4446" class="copybut" id="copybut4446" onclick="doCopy('code4446')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code4446"> <br><div id="msg"></div> <br><input type="text" name="txt" id="txt"> <br><script> <BR>//当状态改变的时候执行的函数 <BR>function handle() <BR>{ <BR>document.getElementById('msg').innerHTML = document.getElementById('txt').value; <BR>} <br><br>//if("\v"=="v")只有在IE下才返回真,包括IE8 <BR>//if(/msie/i.test(navigator.userAgent))也同样能有效判断 <BR>if("\v"=="v"){ <BR>//IE监听文本框且赋一个函数,函数名后不能带括号 <BR>document.getElementById('txt').onpropertychange = handle; <BR>}else{ <BR>//谷歌浏览器利用添加事件函数为文本框添加事件并赋事件要执行的方法,同样方法名后不能加括号 <BR>document.getElementById('txt').addEventListener("input", handle); <BR>} <BR></script> <br> </div>