PHP和Javascript - onclick功能

时间:2015-02-27 13:17:18

标签: javascript php jquery

我在我的网站上的header.php中有一个链接,其中包含以下代码:

<a onclick="irParaMinhasReservas();" style="cursor: pointer;" id="btnMinhasReservas2" class="ph00_9"></a>

然后,在我的principal.js上,我需要定义一个函数,当我点击此链接时,它必须转到index.php页面并自动调用名为AbreAba的函数。但是,如果我已经在index.php页面上,它只需要调用此函数AbreAba。

我该怎么做?我有点迷失在这个编程上,看起来很简单。

1 个答案:

答案 0 :(得分:0)

使用某些参数(例如

)在index.php上重定向

在principal.js中,它将是

irParaMinhasReservas(){

    //YOUR CODE and
    location.href = 'index.php?param=1';
}

现在,在index.php中

if(isset($_GET['param'])){
   //call your function
}