|
<script language=vbscript src="myfunc.vbs"></script> <input type=button onclick="showwait('1')"> -------------- myfunc.vbs Sub showwait(index) dim url url = "a.asp?id=" & index window.open(url,"") end Sub |
|
|
|
已解决,晕头了,用JAVASCRIPT太久了,SHIT!^^
|
|
|
第一个来的人,接分啊!!!!
|
|
|
呵呵,接
|
|
|
Sub showwait(index)
dim url url = "a.asp?id=" & index window.open url,"" end Sub |
|
|
我也来拿点吧!
|
|
|
<script language=vbscript src="myfunc.vbs"></script>
<input type=button onclick="showwait(1)"> -------------- myfunc.vbs Sub showwait(index) dim url url = "a.asp?id=" & index window.open url,"new","" end Sub |
|