我正在尝试使用此代码
自动触发我的fancybox中的href$(document).ready(function() {
$('#item_add_caps').click();
});
但这不起作用。 Here is the site,当您单击Paypal的“立即购买”按钮时,href
位于fancybox内,我的目标是在购物车中准备好默认项目。
答案 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