我可以在我页面上的输入元素上调用focus()方法,它会将其带入视图但是我似乎无法实际点击该字段?
输入如下
<input alt="ACCEPT_TEXT"
title="ACCEPT_TEXT"
placeholder="I Understand"
ng-model="leafNode.transMap[translationLanguage].translation"
id="leafNode_82"
class="ng-pristine ng-valid ng-not-empty ng-touched">
$($('input[alt^="ACCEPT_TEXT"]')[0]).focus(); // works
$($('input[alt^="ACCEPT_TEXT"]')[0]).click(); // has no effect
当用鼠标点击时,光标进入输入并变为黄色,但现在它只是聚焦而不插入光标。
这让我有点受阻,所以任何帮助都非常感激。
由于 标记