怎么在点击某个按钮后执行某个函数
如何在点击某个按钮后执行某个函数?代码如下:PHP codeinput typebutton value发送通知 idsendnot
如何在点击某个按钮后执行某个函数?
代码如下:
PHP code<input type="button" value="发送通知" id="sendnotice"/>
希望再点击“发送通知”这个按钮时,执行某个PHP函数(关于PHP socket)的。
[解决办法]用ajax啊,jquery ajax简单易用。
[解决办法]<input type="button" value="发送通知" id="sendnotice" onclick="ajax()" />
它只能触发前台的事件,php在后台,所以要通过请求来使服务器执行该文件。
[解决办法]用AJAX。
或直接提交form、
或把form提交到iframe处理。
[解决办法][解决办法]PHP code<form action="...php" method="post"><input type="submit" value="发送通知" id="sendnotice" name="sendnotice"/>