我已经编写了一个指令,允许在内部有import java.util.*;
public class HelloWorld {
public static void main(String[] args) {
int[] arr = {1,1};
int index = Arrays.binarySearch(arr, 1);
System.out.println(index);
}
}
的元素上选择文本。按下鼠标然后移动超过阈值时,单击事件将被取消。
现在只有部分有效,我无法找出原因。当文本包含在另一个子元素中时,它可以工作。否则,它没有。
ng-click
<tr>
<td selectable-text ng-click="doThing()">
When this text is selected the click event fires regardless
</td>
</tr>
<tr>
<td selectable-text ng-click="doThing()">
<strong>When this text is selected, the click does not fire (as expected!)</strong>
</td>
</tr>