判断网络是否连接(win8 app HTML&JS)
var networkInfo = Windows.Networking.Connectivity.NetworkInformation; //Retrieve the ConnectionProfile var internetConnectionProfile = networkInfo.getInternetConnectionProfile(); //Pass the returned object to a function that accesses the connection data var connectionProfileInfo = getConnectionProfileInfo(internetConnectionProfile); 判断网络是否连接(win8 app HTML&JS)
评论