在我的代码中有
$scope.open = function(url){
window.open(url, '__blank')
}
$scope.html = "<p>this is <a href=\"#\" ng-click = \"open(\"http://www.face book.com\")\">facebook</a>"
然后在html页面中,有
<p ng-bind-html = "html"></p>
但是当我点击这个div时,打开一个新窗口不起作用