当前位置: 代码迷 >> vbScript >> vbscript怎样去年换行,该怎么处理
  详细解决方案

vbscript怎样去年换行,该怎么处理

热度:6570   发布时间:2013-02-26 00:00:00.0
vbscript怎样去年换行

dim intret
intret = 2
if intret=6 then
  location.href="http://www.google.com/"
elseif intret =7 then
  location.href="http://www.baidu.com/"
end if

请问怎样把上面语句写到一行里面,能正解执行的,js分号就可以了,vbscript要怎么写呢?

------解决方案--------------------------------------------------------
冒号。

VBScript code
dim intret:intret =6:if intret=6 then:a="http://www.google.com/":else:if intret =7 then:a="http://www.baidu.com/":End if:end if:MsgBox a
  相关解决方案