首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

怎么在点击某个按钮后执行某个函数

2012-05-11 
如何在点击某个按钮后执行某个函数?代码如下: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处理。
[解决办法]
探讨

引用:

<input type="button" value="发送通知" id="sendnotice" onclick="ajax()" />
它只能触发前台的事件,php在后台,所以要通过请求来使服务器执行该文件。

我主要是想用PHP socket,所以希望执行的是PHP函数。用AJAX也能实现socket吗?

[解决办法]
PHP code
<form action="...php" method="post"><input type="submit" value="发送通知" id="sendnotice" name="sendnotice"/> 

热点排行