例
入力フィールドのテキストがカットされているときexpressonを実行します。
<input ng-cut="count = count + 1" ng-init="count=0" value="Cut this text"
/>
»それを自分で試してみてください 定義と使用法
ng-cut
指令では、HTML要素のテキストを切断したときに何をすべきかAngularJSを伝えます。
ng-cut
AngularJSからの指令は、両方の、要素の元のoncutイベントを上書きしないであろうng-cut
表現と元のoncutイベントが実行されます。
構文
< element ng-cut=" expression "></ element >
<A>によってサポートされている、<入力>、<TEXTAREA>、<選択>、およびウィンドウオブジェクト。
パラメーター値
Value | Description |
---|---|
expression | An expression to execute when the text of an element is being cut. |