我的页面中有一个图像,点击图像会打开一个弹出窗口。
在页面
<dynamic-table-form fields="basicSection" data="data" role="form" class="form-vertical">
<span dynamic-field-type="popup">
<input ng-model="value" type="text" id="txtDOB" class="inputWithImge" />
<img ng-click="openPopup()" name="search" ng-src="http://www.spheretekk.com/bc/images/search-icon.gif" id="input_img"/>
</span></dynamic-table-form>
控制器中的
$scope.openPopup = function() {
console.log('came inside the function');
//some code
}
但是点击图片它也没有进入那个功能。是否有任何解决方案。 提前谢谢。