JavaScript DHTML/Event onMethod/onBeforePaste — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 07:20, 26 мая 2010

"onBeforePaste" Example

    
<html>
<body>
   <p>Copy and paste some text into the textarea below.</p>
   <form>
   <textarea cols="60" 
             onbeforepaste="alert("The text is on the verge of being pasted")">
   </textarea>
   </form>
</body>
</html>