2016-11-28 70 views
0

我已經搜索了類似的問題,但我找不到能解決我的問題的問題。我有工作的角度。我的目標是隱藏與選擇選項無關的信息。在此先感謝您的幫助。表格選擇角度變化事件

下面的jQuery代碼的工作,但棱角分明,它的鏈接並不:

表格樣本:

<form name="" id="resumIdForm" method="post" action=""> 
    <label for="resumeId">Sélectionner un résumé:</label> 
    <select class="form-control" id="resumeId"> 
     <option ng-repeat="item in main.articleList" value="{{ item.articleId }} " selected="selected">{{ item.articleId }} </option> 
    </select> 
</form> 
+0

只要一提起來,當一起使用JQuery和AngularJS時,您會遇到問題;最好避免像你現在這樣做的選擇器,而是使用指令/組件。 –

+0

謝謝!這就是我正在做的。代碼放置在指令中的鏈接函數內 – Fred

回答