假設我寫使用數據屬性在HTML這樣的測驗:AngularJS中有一個.data方法嗎?
<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方法在jQuery中執行此操作。 AngularJS中是否有相同的功能?我做這一切都錯了嗎?我應該只使用jQuery?
'attrs.answer'更好:'Attributes'已經規範了DOM屬性(參見[documentation](http://docs.angularjs.org/api/ng.$compile.directive.Attributes)) – Blackhole
Woops ,所以它!編輯! – tymeJV
tymeJV,如果你會原諒我的js noobness,那麼我將如何訪問輸入字段的內容?我會使用ng模型嗎?似乎如果我使用了ng-model,那麼我需要在每個測驗問題的範圍內都有一個單獨的變量 - 這並不好。 – Tristan