Копирование содержимого поля textarea кликом по кнопке.
<html> <head> <title>Копирование содержимого поля textarea кликом по кнопке.</title> <SCRIPT language=javascript> function toBuf(name){ if(document.selection.createRange().text!=""){ name.focus(); document.selection.createRange().duplicate().execCommand("Copy"); }else{ name.focus();name.createTextRange().execCommand("Copy");}} </SCRIPT> </head> <body> <form name=main> <textarea id=lat name=lat cols="40" rows="3"> <a href="http://studia.scriptic.ru/"> <img height="31" width="88" border="0" src="http://studia.scriptic.ru/banner/88/web-disain.gif"></a></textarea><br> <INPUT title=copy onclick=toBuf(main.lat) type=button value="Копировать в буфер"> </form> </body> </html>
|
Категория: Скрипты | Добавил: worldofskripts (11.03.2007)
|
Просмотров: 811
| Рейтинг: 5.0 |
|