程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> 收藏當前頁面的網址Asp代碼

收藏當前頁面的網址Asp代碼

編輯:關於ASP編程

              收藏當前頁面的網址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>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved