最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
在浏览器里实现类似VB Form的界面控制
时间:2022-06-30 09:56:06 编辑:袖梨 来源:一聚教程网
在浏览器里很容易实现类似VB Form的文本框,按钮等控制
主要用到 keydown,keyup,keypress 等事件
对按键的捕获使用 window 对象的子对象 event 的 keycode 属性
以下代码仅供参考:
<%@ Language=VBScript %>
<% ' By Chen Kang
' Any Problem please email to
' [email protected]
' VI 6.0 Scripting Object Model Enabled %>
<% if StartPageProcessing() Then Response.End() %>
主要用到 keydown,keyup,keypress 等事件
对按键的捕获使用 window 对象的子对象 event 的 keycode 属性
以下代码仅供参考:
<%@ Language=VBScript %>
<% ' By Chen Kang
' Any Problem please email to
' [email protected]
' VI 6.0 Scripting Object Model Enabled %>
<% if StartPageProcessing() Then Response.End() %>