我確實有點不知所措,正如前面提到的,我需要將鏈接放入js中的var中,以便只有在單擊此項時纔會打開鏈接。將鏈接設置爲Js var?
的js部分看起來如下:
var items = [{
'icon': 'new',
'name': 'test',
'date': 'today',
'user': {
'name': 'test',
'color': '#07D5E5'
}
}];
和HTML輸出的一部分是這樣的:
<pager total-items="totalItems" items-per-page="itemsPerPage"
ng-model="currentPage" max-size="maxSize" ng change="pageChanged()"></pager>
<p ng-if="itemsPerPage * currentPage < totalItems">
Showing {{ itemsPerPage * currentPage - itemsPerPage + 1 }} -
{{ itemsPerPage * currentPage }} of {{ totalItems }} total items
</p>
<p ng-if="itemsPerPage * currentPage >= totalItems">
Showing {{ itemsPerPage * currentPage - itemsPerPage + 1 }} -
{{ totalItems }} of {{ totalItems }} total items
</p>
如何在這個設定的JS鏈接,將打開時,有人會點擊名稱:測試?我不明白
你喜歡在哪裏放置鏈接?當你點擊它時會發生什麼? – AWolf
@AWolf嗯,它應該在每個名稱的js代碼中,因爲這只是一行manys,並且應該只在我點擊Name測試時執行。點擊它後,它應該打開一個鏈接,如http://在同一個或新標籤中的東西,這並不重要。如果你需要一個真正的測試網站的例子,它目前正在運行,也許更好地理解它,打我吧 –
你只顯示了HTML的分頁位。沒有關係到你的'var items' – ethorn10