JavaScript DHTML/Event onMethod/onPaste — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:20, 26 мая 2010
"onPaste" Example
<html>
<body>
<p>Copy and paste text into the textarea to triger the onpaste event</p>
<textarea cols=60 onpaste="alert("The text is being pasted")">
</textarea>
</body>
</html>