你可以自动加载href而不必点击某些东西吗?

时间:2016-10-30 01:41:56

标签: php html

我想激活此href

<p><a class="button" href="#popup1">Click Me</a></p>

无需使用按钮。例如,

if ($info == "this") {
            //go to href=#popup1 here
}

我试过这样做,

if ($info == "this") {
            print "<meta http-equiv='refresh' content='0; url=#popup1' />";
}

但它只是陷入了一个循环。

1 个答案:

答案 0 :(得分:1)

通过为您的a标记保留一些ID,您可以通过.click()函数实现此功能

<p><a class="button" id="popup1" href="#popup1">Click Me</a></p>


if (true /*your logic*/) {
   echo '<script>document.getElementById("popup1").click()</script>';
}