我想要做的是单击一个按钮,我试图让用户选择显示的 2 个图像之一并使所选图像可拖动。我的代码显示 2 张图片,其中 1 张是可拖动的。我无法弄清楚如何添加该功能以让用户选择 2 个图像之一并让所选图像可拖动
这是我的html代码
<div ng-app="test">
<button name="Add" type="buton" ng-click="showMarker = true">Show List</button>
<hello>
</hello>
</div>
这是javascript代码
angular.module('test', []).directive('hello', function() {
return {
restrict : 'E',
template : '<div style="position: relative" ng-show="showMarker"><img id="mr" src="http://www.mbs.edu/i/gmap_marker_default.gif" /><img src="http://www.hypercosm.com/images/icons/add_marker_icon2.gif" /></div>',
replace: true,
link : function(scope, element, attrs) {
$("#mr").draggable();
}
};
})
这是jsfiddle