我正在使用angularjs指令來重定向另一個html頁面。我正在寫入點擊函數,但我在警告框中獲取頁面名稱時未重定向到另一個html頁面。如何使用angularjs中的按鈕單擊事件將一個html頁面重定向到另一個頁面
sample.html:
<test1>
<button data-ng-click="click('/page.html')">Click</button>
</test1>
sample.js:
app.directive('test1',['$location', function(location) {
function compile(scope, element, attributes,$location) {
return{
post:function(scope, element, iAttrs,$location) {
scope.click=function(path)
{
alert("click"+path);
$location.path('/path');
};
}
};
}
return({
compile: compile,
restrict: 'AE',
});
}]);
我想重定向page.html中如何做到這一點請建議我。 謝謝。
یاشاسین....... – Farshid