如何得到兩個div標籤之一的索引沒有我不使用ng-repeat?
我試過這個,但它沒有工作;我怎樣才能發送索引值的函數 - Angularjs
<div ng-click="formselect($index)"></div>
<div ng-click="formselect($index)"></div>
如何得到兩個div標籤之一的索引沒有我不使用ng-repeat?
我試過這個,但它沒有工作;我怎樣才能發送索引值的函數 - Angularjs
<div ng-click="formselect($index)"></div>
<div ng-click="formselect($index)"></div>
HTML提供了答案:
<div ng-click="formselect($event)"></div>
<div ng-click="formselect($event)"></div>
JS:
var formselect = function(te) {
return Array.prototype.slice.call(document.getElementsByClassName(te.target.className)).indexOf(te.target)
}
你是否在ng-repeat的上下文中? – Makoto
這不是'ng-submit'。 – JLRishe
@Makoto有四個div標籤,我想發送點擊標籤的索引 –