如何重定向到另一个页面并在该页面上触发事件

时间:2019-06-10 06:51:19

标签: jquery html

点击此按钮后,我创建了一个id为“ work”的按钮   尝试重定向到与我们联系页面和带有id =“ working-   我们”中单击“联系我们”。

jQuery

$("#work").click(function() {
    window.location.replace("contactus.html");
    sessionStorage.setItem("workWithUS", "true");
    if (sessionStorage.workWithUs == "true") {
        $("#working-us").trigger(click);
        sessionStorage.removeItem("workWithUs");
    });

HTML

<a href="javascript:void(0);" id="work">Join our Team</a><button class="topic-btn d-flex" data-toggle="tab" href="#working-us" id="work2">

1 个答案:

答案 0 :(得分:1)

您的代码看起来不错,但是缺少一个右括号,这可能会阻止if语句触发:

$("#work").click(function() {
  window.location.replace("contactus.html");
  sessionStorage.setItem("workWithUS", "true");
  if (sessionStorage.workWithUs == "true") {
    $("#working-us").trigger(click);
    sessionStorage.removeItem("workWithUs");
  }
});