问: 我的信箱是xl_l@citiz.net ______________________________________________________________________________________________ 答1: http://wwd.8u8.com/exam/ascii.htm ______________________________________________________________________________________________ 答2: <input type=text name=txt> <script language=javascript> function document.onkeydown() { txt.value = "keyCode = "+window.event.keyCode; } </script>
你用这段代码组成一张网页,你想看哪个键的就看哪个键的。 ______________________________________________________________________________________________ 答3: 同意。 ______________________________________________________________________________________________ 答4: 好像大小写字符不区别的 ______________________________________________________________________________________________ 答5: <input type=text name=txt> <script language=javascript> function document.onkeypress() { txt.value = "keyCode = "+window.event.keyCode; } </script>
______________________________________________________________________________________________ 答6: 对呀,你们的这种办法,对于大小写没有用 ______________________________________________________________________________________________ 答7: char.asp
<% for i=0 to 255 Response.write chr(i) Response.write " " & i &"<br>" next
%>
(编辑:网站学习网)
|