猿问

在HTML中使用VBScript可用三种方法

在HTML中使用VBScript可用三种方法


翻过高山走不出你
浏览 978回答 4
4回答

慕娘9325324

例子1:调用函数方式<HTML><HEAD><TITLE>测试按钮事件</TITLE><SCRIPT&nbsp;LANGUAGE="VBScript">Function test()msgbox "你还真点我?"End&nbsp;Function</SCRIPT></HEAD><BODY><input type="button" value="点击我" onclick="vbscript:test()"></BODY></HTML>=====================================================例子2:事件触发方式<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>VBSCRIPT与html</title></head><script&nbsp;language="vbscript">option explicitdim a,b,csub btmshow_onclicka=abc.text1.valueb=abc.text2.valueif a>b thenc = aelsec=bend&nbsp;ifabc.text3.value=cend&nbsp;sub</script><body><form name="abc"><p>请输入第一个数字:<input type="text" width="60" name="text1"></p><p>请输入第二个数字:<input type="text" width="60" name="text2"></p><p>两个数字最大值为:<input type="text" width="60" name="text3"></p><p><input type="button" name="btmshow" value="输入"></button><input type="reset" name="reshow" value="重设"></p></form></body></html>====================================================例子3:在窗体中嵌入脚本代码以响应窗体中按钮的单击事件<HTML><HEAD><TITLE>测试按钮事件</TITLE></HEAD><BODY><FORM NAME="Form1"><INPUT TYPE="Button" NAME="Button1" VALUE="单击"><SCRIPT FOR="Button1"&nbsp;EVENT="onClick"&nbsp;LANGUAGE="VBScript">MsgBox "按钮被单击!"</SCRIPT></FORM></BODY></HTML>

鸿蒙传说

<head><title>23</title><script type="text/vbscript">Function printa()document.getElementById("aa1").innerText=document.getElementById("aa").valuedocument.getElementById("bb1").innerText=document.getElementById("bb").valueend&nbsp;Function</script></head><body><input type="text" id="aa" value="111" name="aa"/><input type="text" id="bb" value="21" name="bb"/><button onClick="printa">点击我</button><div id=aa1></div><div id=bb1></div></body></html>

月关宝盒

1234567891011121314151617<head><title>23</title><script&nbsp;type="text/vbscript">Function&nbsp;printa()&nbsp;&nbsp;&nbsp;document.getElementById("aa1").innerText=document.getElementById("aa").value&nbsp;&nbsp;&nbsp;document.getElementById("bb1").innerText=document.getElementById("bb").valueend&nbsp;Function</script></head><body><input&nbsp;type="text"&nbsp;id="aa"&nbsp;value="111"&nbsp;name="aa"/><input&nbsp;type="text"&nbsp;id="bb"&nbsp;value="21"&nbsp;name="bb"/><button&nbsp;onClick="printa">点击我</button><div&nbsp;id=aa1></div><div&nbsp;id=bb1></div></body></html>

守着一只汪

html 中调用vbscript改成asp 中调用vbscript
随时随地看视频慕课网APP

相关分类

Html5
我要回答