2013-08-02 75 views
0

我在我的html頁面中有一個textarea。它也有一個按鈕。當我點擊那個按鈕時,我需要在文本區域複製一些文本。文本從textarea中刪除後,無法將文本複製到textarea

這是正常工作。

當我點擊複製後,如果我現在刪除或編輯文本區域中的一些文本,如果我再次單擊複製文本不會被複制。

請幫忙。

以下是HTML代碼。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> 

<textarea cols="20" rows="20" name="mytext" id="mytext">Copy here .... </textarea> 

<br> 

<input type="button" value= "Copy" onclick="copy();"/> 

<script> 
function copy(){ 
    $('#mytext').html( $('#mytext').html() + "some sample text message "); 
} 
</script> 

回答

3

使用val()html()

function copy(){ 
    $('#mytext').val( $('#mytext').val() + "some sample text message "); 
}