Jquery工具在按钮单击时覆盖重定向页面

时间:2014-01-16 16:55:09

标签: javascript jquery

我在页面加载时会弹出一个年龄确认框

如果用户点击“是”,那么叠加层应该关闭,但如果用户点击“否”,我想关闭叠加层并将用户重定向到另一个页面。

这是我的代码

$(document).ready(function() {

  $("#confirmage").overlay({

    // custom top position
    top: 260,
    mask: {
    color: '#fff',
    loadSpeed: 200,
    opacity: 0.9
    },

    closeOnClick: false,
    api: true,
    load: true

    });
});
$('.link-no').click(function () {
    $("#confirmage").overlay().close();
    window.location.href = 'insert_page_here';
});

在.html上我有这个

<div id="confirmage">
  <div>
    <h2>Are you older than 18 years old?</h2>
    <p>
      <button class="close">Yes</button>
      <button class="link-no close">No</button>
    </p>
  </div>
</div>

现在,当用户点击“否”时,叠加层才会关闭,但它不会将用户重定向到该页面。

提前多多感谢

0 个答案:

没有答案