例
入力フィールドのテキストをコピーしているときにexpressonを実行します。
<input ng-copy="count = count + 1" ng-init="count=0" value="Copy this text"
/>
»それを自分で試してみてください 定義と使用法
ng-copy
ディレクティブは、HTML要素がコピーされているときに何をすべきかAngularJSを伝えます。
ng-copy
AngularJSからの指令は、両方の、要素の元oncopyイベントを上書きしませんng-copy
発現と元oncopyイベントが実行されます。
構文
< element ng-copy=" expression "></ element >
すべてのHTML要素によってサポートされています。
パラメーター値
Value | Description |
---|---|
expression | An expression to execute when the text of an element is being copied. |