js获取本机ip地址详解编程语言

    /**  
     * 获取本地IP地址  
     */   
    function getLocalIPAddress()   
    {   
        var obj = null;   
        var rslt = "127.0.0.1";   
        try   
        {   
            obj = new ActiveXObject("rcbdyctl.Setting");   
            if (!isNull(obj.GetIPAddress))   
            {   
                rslt = obj.GetIPAddress;               
            }   
            obj = null;   
        }   
        catch(e)   
        {   
            //异常发生   
        }   
           
        return rslt;   
    }  

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8882.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论