假设我使用 data 属性在 HTML 中编写了一个这样的测验:
<p>The cow ran in front of the <input data-answer="car"></input>.</p>
<p>Then the <input data-answer="man"></input> hit the breaks.</p>
如何访问 AngularJS 中的 data-answer 属性?我知道如何使用 .data 方法在 jQuery 中做到这一点。AngularJS 中是否有等价物?我做这一切都错了吗?我应该只使用jQuery吗?