admin管理员组

文章数量:1538198

第一种方式:

System.Diagnostics.Process.Start("http://www.3dmomoda/thingdepot/");
//可以自己选择浏览器,也可以用系统设置的默认浏览器,默认浏览器就不需要传入:"IExplore.exe"这个参数
//System.Diagnostics.Process.Start("IExplore.exe", "https://www.baidu/");

第二种方式:

WWW www = new WWW("http://www.3dmomoda/thingdepot/");
Application.OpenURL(www.url);

本文标签: 打开网页浏览器Unity