PHP-如何在按钮单击上执行两个操作

我有一个带有一些输入字段和一个表格的页面,以及三个按钮分别为play,pause和stop.我只想在按下播放按钮时刷新表格部分.我希望播放按钮执行两个操作,一个是运行更新查询并仅重新加载页面.我在单击“暂停”按钮时希望停止重新加载表格.当我按下“停止”按钮时,希望它运行udate查询.我正在使用codeigniter,MVC体系结构.这是我尝试过的和我的视图页面.

<meta http-equiv="refresh" content="300">   
<input type="text" size="7" id="IC" name="IC" value="<?php echo set_value('IC',$IC); ?>" />
<input type="text" size="7" id="ID" name="ID" value="<?php echo set_value('ID',$ID); ?>" />
<button type="button" style="width:100px;">PLAY</button>
<button type="button" style="width:100px;">PAUSE</button>
<button type="button" style="width:100px;">STOP</button>
<table>
<tr>
<th> blah </th>
<th> blah </th>
<th> blah </th>
</tr>
//do some  code
</table>    

解决方法:

单击按钮一次可以调用两个js函数.像这样

function jsfun1()
{
   //do the action here
}

function jsfun2()
{
   //do the action here
}

call both on onclick

<button type="button" style="width:100px;"  onclick="jsfun1(),jsfun2()">play</button>
上一篇:php-CodeIgniter搜索结果分页


下一篇:pyqt信号和槽应用举例