我是AngularJS newby。我正在嘗試使用AngularJS指令的模板顯示圖像,並且點擊圖像我想要在圖像上放置標記。我不知道爲什麼它不工作。AngularJS - 指令不起作用
第一個指令:
directive('hello', function() {
return {
template: '<img id="map" src="http://www.lonelyplanet.com/maps/asia/india/map_of_india.jpg" />',
link: function(scope, element, attrs) {
$('#map').click(
function(e) {
$('#marker').css('left', e.pageX).css('top', e.pageY).show();
}
);
},
};
});
的HTML代碼
<hello>
<img id="marker" src="http://maps.google.com/mapfiles/ms/micons/blue.png" style="display: none; position: absolute;" />
</hello>
在這種情況下jsfiddle會很好 – Dogoku 2013-03-04 10:14:37