JS實現點選按鈕複製當前介面的URL

southcamel發表於2012-07-17

1、首先在當前介面獲取URL資訊:

public java.lang.StringBuffer getRequestURL()

       getRequestURL()會得到一個完整的URL地址,也就是絕對的絕對地址。如:http://localhost:8080/MyProject/Test/NewTask.jsp,返回值為StringBuffer型,通過.tostring()方法轉化為String型。

public java.lang.String getRequestURI()

       getRequestURI()就相當於你在寫一個JSP頁面的時候會有這樣的東西"action='/MyProject/xxx'"這個方法就是獲得'/MyProject/xxx',也就是說它會得到一個相對地址。如:/MyProject/Test/NewTask.jsp

       getServletPath(), 獲取所請求的檔案路徑,即工程名後面的路徑。/Test/NewTask.jsp

      getRemoteAddr(),獲取客戶端IP地址.

       getQueryString()得到地址中傳遞的引數,即?後面的內容。

因此,獲取整個地址的方法如下:     

HttpServletRequest httprequest = (HttpServletRequest) request;
   String path1=httprequest.getRequestURL().toString();
   String path2=httprequest.getQueryString();
   String currpath=path1+"?"+path2;

在當前Jsp介面利用一個隱藏的文字框儲存該值,然後就可以在JS中獲取該值:

<input type="hidden" name="currentpath" id="currentpath" value="<%=currpath%>"/>

 
2、在JS中實現點選按鈕複製連結

function Copy()
 {
   var txtObj=document.getElementById("currentpath");
   var text=txtObj.value;
   window.clipboardData.setData("Text",text);
   alert("已經複製到剪貼簿!"); 
   //var clipValue=window.clipboardData.getData("text");//text is not case sensitive
  //alert(clipValue);
}
    



3、按鈕

<input type="button" value="Copy URL" οnclick="Copy()">



 

 


 

 

相關文章