@echo off
echo 打开你需要访问的网址:
echo 打开你需要访问的网址:
echo 打开你需要访问的网址:
echo.
echo.
echo.
echo 1. 学习网
echo 2. 英语报
echo 3. 冷笑话
echo.
echo.
echo.
:getChoice
set /p choice=请按照数字 1, 2, 或 3, 选择你需要访问的网址其网址根据你所需要的环境使用指定浏览器打开 选择后按回车确定:
if "%choice%"=="1" goto 选项1
if "%choice%"=="2" goto 选项2
if "%choice%"=="3" goto 选项3
echo Invalid choice.
echo.
goto getChoice
:选项1
title 网站名称 用firefox
cd /d C:\Program Files (x86)\Mozilla Firefox
timeout /t 1
start firefox https://网站地址
goto end
:选项2
title 网站名称 用chrome
cd /d C:\Program Files (x86)\Google\Chrome\Application
timeout /t 1
start chrome http://网站地址
goto end
:选项3
title 网站名称 用IE
cd /d C:\Program Files\Internet Explorer\
timeout /t 1
start iexplore http://网站地址
goto end
:end