例如值發送到角控制,我有HTML,將只顯示在彈出我可以通過JavaScript在運行時
<div id="popup1" style="display: none; width: 600px; height: 400px; overflow: hidden">
<div ng-controller="DataBindingCtrl">
<div rel="title">
Show or Update Image
</div>
<div rel="body" style="padding: 10px; line-height: 150%">
<div >
<img src="https://upload.wikimedia.org/wikipedia/commons/a/ac/No_image_available.svg" style="float: left; background-color: white; width: 250px; height: 320px; border: 1px solid silver; margin: 5px;"/>
</div>
<div class="w2ui-field w2ui-span3">
<label>Files:</label>
<div>
<form class ="form-horizontal">
<input id="file" style="width: 100px" />{{selBookId}}
<input id="currentRecord" type="text" ng-model="currentRecordText" ng-model-instant>
{{currentRecordText}} {{idRec}}
</form>
</div>
</div>
</div>
@*<div rel="buttons">
<button class="btn" onclick="$('#popup2').w2popup()">Switch to Popup 2</button>
</div>*@
</div>
我想爲設置一個值idRec當用戶點擊彈出窗口按鈕。
這是可能的,什麼是正確的方法?
我想你可以有它的'NG-model'指向'idRec' – Rajesh
一個隱藏的文本字段,當你需要使用jQuery與角度很最好把jQuery的東西放在指令中。然後,您將能夠將所需的任何參數從視圖傳遞到指令,並將它們與您的jQuery代碼一起使用。 – Lex
你能提供jsfiddle嗎? –