我通过社区研究了这个话题,虽然我找不到答案。我正在使用 Bronto 的直接添加功能(尝试使用它),文档不是那么好。
总之,href 链接订阅了电子邮件列表中的用户。唯一的问题是此链接会打开一个新页面。当我希望用户留在同一页面上时。我想在单击链接时进行重定向,但我不确定这是否可行。
我试过这个:
//Html
<a id="subscription" href="http://example.com">Subscribe</a>
// Jquery
$("#emailsubscribe").click(function(e){
e.preventDefault();//this will prevent the link trying to navigate to another page
//do the update
var href = "http://example.com";
//when update has finished, navigate to the other page
window.location = "href";
});
目标是我试图让它在用户点击链接的地方,它将他们订阅到电子邮件列表,但立即将它们重定向回来,而不打开另一个窗口。