[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] 批处理choice命令可以选择十个数吗?

  1. choice /c:1234567890 /n /m "请按键1、2、3、4、5、6、7、8、9、0 选择功能"
  2. if %errorlevel%==1 goto test1
  3. if %errorlevel%==2 goto test2
  4. if %errorlevel%==3 goto test3
  5. if %errorlevel%==4 goto test4
  6. if %errorlevel%==5 goto test5
  7. if %errorlevel%==6 goto test6
  8. if %errorlevel%==7 goto test7
  9. if %errorlevel%==8 goto test8
  10. if %errorlevel%==9 goto test9
  11. if %errorlevel%==0 goto et
  12. 中间省略了
  13. :et
  14. exit
复制代码
这个选择1-9都正常,但是选择0的时候并没有退出

用A  choice /c:123456789A/n  /m 。。。。
下面判断是10

TOP

返回列表