1
爲什麼這個鏈接在Safari上不起作用? 當我點擊Click here
它應該打開http://othersite.com
和http://mysite.com/profile
。問題是它只會打開http://mysite.com/profile
並且它不會爲http://othersite.com
打開一個新選項卡。這一個適用於Chrome和firefox ..我可以使它在Safari上工作嗎?帶onclick的href在Safari中不工作
HTML
<a target="_blank" onclick="redirect()" href="http://othersite.com">Click here</a>
的JavaScript
function redirect(){
location.href = 'http://mysite.com/profile';
}
這甚至沒有接近回答這個問題。另外它不起作用。 – DirtyKalb