单击按钮事件如何在我的表单上找到光标聚焦输入元素。 我的表单上有多个输入,想要将onclick上的一些数据与聚焦元素绑定。
HTML:
<div>
<button onclick="findFocus"></button>
<input type="text" id="name" />
<input type="text" id="email" />
<input type="text" id="address" />
</div>
答案 0 :(得分:0)
在模板中使用ng-click
(为什么有onclick
?)和依赖注入$event
,它会让您在控制器中访问它。