-1

我想在他点击“是”时重定向一个人

X=MsgBox("Message Description",4+16,"Title") 

在他/她点击“是”后,他将被重定向到 www.google.com,如果他们点击“否”,.vbs 将退出。

这对我有很大帮助

4

1 回答 1

0

You could try something like this

 X = MsgBox ("Blah blah", VBYesNo, "Title")
    If X = vbYes then
        location.href = "www.google.com"
    end If
于 2013-08-10T09:57:44.557 回答