使用href或window.location重定向URL

时间:2016-08-12 08:09:13

标签: javascript jquery html redirect opencart

我使用的是Opencart 1.5.1。

我的网站网址示例:www.website.com

我在控制器中设置了重定向链接:

$this->data['google'] = "https://accounts.google.com";
// this is url for login account google,so i can't change the htaccess

然后我在视图中调用它:

<div class="omb_login">
    <div class="omb_socialButtons">
        //another button
        <button class="btngoogle">
            <i class="fa fa-google" data-size="icon"></i>
                <a href="<?php echo $google; ?>" class="google" style="color:#ffffff; text-decoration:none;">Google</a>
                // it's like <a href="https://accounts.google.com" ......
        </button>
    </div>
</div>

它适用于Chrome // link = https://accounts.google.com

但不适用于Mozilla Firefox // nothing happen when i click.

我尝试使用function on click进行修复。

$(function() {
  $('.btngoogle').on('click', function () {
        var temp = ($(".google").attr("href"));
        $(location).attr('href',temp);
  });
});

当我点击www.website.com / https://accounts.google.com

任何人都知道如何解决(如何让mozilla为href工作?)或(重定向网址?)?

0 个答案:

没有答案