2015-11-11 28 views
0

我的html a標籤不適用於第二次點擊Chrome瀏覽器時與iPhone 9的iPhone。 第二次點擊後,新的html被放置在頁腳,並重復幾個次在彼此之下。谷歌瀏覽器html a標籤不能在ios9上第二次點擊

的頁面是建立與angularjs擊潰

代碼例如:

<li class="work-item"> 
<a href="#/work/byporten-rulleskoyrten" class="work-item-title"> 
    <img src="img/works/rulleskoyter_thumb.png" /> 
    <p>Fall/spring Fashion - Byporten</p> 
</a> 
</li> 

.when('/work/byporten-rulleskoyrten', { 
      controller: 'HaiWorkCaseController', 
      controllerAs: 'ctrl', 
      templateUrl: '../partials/work-case-byporten-rulleskoyten.html' 
     }) 

這在組合使用一些導航在控制器(該元素是從上面的代碼的子頁):

$('.menu-item-link.work').on('click touchstart', function (event) { 
    $('html, body').scrollTop(0); 
    window.location.assign('#/'); 
    animateToWork();     
}); 

ios更新後google chrome中是否有bug?我不明白爲什麼這不起作用...

回答

0

據我檢查這是正確的,但我無法找到關於此的更多信息。 也許你可以報告這個IOS平臺來檢查它是否正確?

相關問題