以下作品從
a(href="javascript: ActiveChange('topStories');") Top Stories
調用一個函數ActiveChange(可變)但是,如果該功能被定義爲AngularJS $範圍功能,如
function activeController ($scope) {
$scope.topStories='active';
$scope.mostRecent='lucky';
$scope.ActiveChange = function (activeTab) {
if(activeTab=='topStories'){
var x=document.getElementById("someinput");
x.value='happy to be alive';
$scope.topStories='active';
$scope.mostRecent='';
}
else {
alert('else');
$scope.topStories='happy';
$scope.mostRecent='active';
}
}
}
你怎麼稱呼$範圍。 ActiveChange =函數(activeTab)從?
有沒有你不使用[ngClick]一個原因(http://docs.angularjs.org/api/ ng.directive:ngClick)? – Mike
是的,儘管不是一個很好的理由。 (缺乏知識)謝謝你的領導。 –
我在控制器中看到了DOM引用嗎? ....恥辱你:) – Spock