您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> asp编程 >> 正文

收藏当前页面的网址Asp代码

作者:佚名    责任编辑:admin    更新时间:2022-06-22

          收藏当前页面的网址asp教程代码

         <%
         function getip   '获取ip
            if request.servervariables("http_x_forwarded_for")=empty then
               getip=request.servervariables("remote_addr")
            else
               getip=request.servervariables("http_x_forwarded_for")
            end if
         end function

         response.write getip
         %>

         <script>
         var hostname = location.hostname;      //获取当前域名
         var localurl = location.href;          //获取当前的url地址信息 
         </script>
         <a href="#" onclick="this.style.behavior='url(#default#homepage)';window.external.addfavorite(localurl,'www.a-sj.cn')">加入收藏         

         </a>