Loading Content using Ajax with PHP Include

前端 未结 5 1248
旧时难觅i
旧时难觅i 2021-01-28 18:15

I have a PHP page which has a div, the div has a PHP includes which includes this file:



        
5条回答
  •  长发绾君心
    2021-01-28 18:50

    Don't call the function in the click method parameter. You have to put the reference to the handler function.

    var handler = function onClick () {...}
    
    $("whatever").click(handler);
    

提交回复
热议问题