我在$watch
$scope.$watch(location.hash, function(){
if(location.hash == 'Payment-details')
{
alert('worked');
}
});
当我执行它时,这不起作用
答案 0 :(得分:0)
location.hash
永远不会与“付款细节”相同:读取值时会包含散列(#
)。
请检查location.hash == '#Payment-details'
。