2011-03-26 57 views
-2

我需要在我的網站上添加一個僞聊天。這個想法是,你寫在網站上的某個地方,然後按下它旁邊的一個按鈕,它將寫入的內容轉移到上面的框架中。我試着用textarea來做這件事,甚至發現了一個代碼如何選擇和複製文本,但也有人說,它只能在IE中使用。 沒有人有另一種想法,因爲textarea的似乎有點玄乎:提前按下按鈕時選擇並複製textarea文本

+0

這是給你:http://stackoverflow.com/questions/3475293/copy-and - 粘貼剪貼板功能於JavaScript的或-的jQuery – 2011-03-26 10:40:17

回答

0

/

謝謝如果你想從一個textarea可靠地複製文本,只需要將其存儲在一個變量,而不是到用戶的剪貼板中(這似乎是你所建議),下面將做它在所有主要瀏覽器:

function getSelectedText(textarea) { 
    if (typeof textarea.selectionStart == "number") { 
     return textarea.value.slice(textarea.selectionStart, textarea.selectionEnd); 
    } else if (typeof document.selection != "undefined") { 
     textarea.focus(); 
     return document.selection.createRange().text; 
    } 
}