最新的Web开发教程
 

AngularJS NG-切指令


执行expresson输入字段的文本被切断时:

<input ng-cut="count = count + 1" ng-init="count=0" value="Cut this text" />
试一试»

定义和用法

ng-cut指令告诉AngularJS做什么,当你切开一个HTML元素的文本。

ng-cut从AngularJS指令将不会覆盖元素的原始oncut事件,两个ng-cut的表达与原oncut事件将被执行。


句法

< element ng-cut=" expression "></ element >

通过<A>支持的<input>,<选择>,<textarea>和窗口对象。


参数值

Value Description
expression An expression to execute when the text of an element is being cut.