在fancybox中触发href

时间:2014-02-09 16:50:08

标签: javascript jquery fancybox

我正在尝试使用此代码

自动触发我的fancybox中的href
$(document).ready(function() {
   $('#item_add_caps').click();
});

但这不起作用。 Here is the site,当您单击Paypal的“立即购买”按钮时,href位于fancybox内,我的目标是在购物车中准备好默认项目。

1 个答案:

答案 0 :(得分:-1)

只是为了触发href-这是要走的路:

$("#item_add_caps").click(function(){
      window.location.href = $("#item_add_caps").attr("href");
});  

要在文档就绪时执行此操作,您还可以使用简写:

$(function(){ // shorthand for $(document).ready(function(){ 
     window.location.href = $("#item_add_caps").attr("href"); 
}):

仅当#item_add_caps"具有完整的href时才会有效,即http://www.example.com

如果href仅包含/example/pathame等路径名,那么您可以使用

window.location.pathname