单弹出可以为多个按钮添加文本

时间:2013-02-12 07:00:34

标签: jquery ajax cakephp

我的应用中有多个用户。在用户列表中,每个用户都有一个数据提交按钮。数据将以弹出方式提交。我必须使用jquery生成popup和jquery-json组合来保存数据库中的数据。    我可以使用单个弹出式单击多个按钮吗?请建议我。

e.g。

 <table width="98%" border="0" cellspacing="2" cellpadding="2" bgcolor="#efead8" style="border:#FFCC00 1px solid;">
      <tr><th bgcolor="#cccccc" align="right">&nbsp;S.No.&nbsp;</th><th bgcolor="#cccccc" align="left">&nbsp;Client&nbsp;</th><th bgcolor="#cccccc" align="center">&nbsp;Cost List&nbsp;</th><th bgcolor="#cccccc" align="center">&nbsp;Action&nbsp;</th><tr>';
        foreach($arrclient as $k => $v)
             $strPrint.='<tr><td align="right">&nbsp;'.++$i.'&nbsp;</td><td align="left">&nbsp;'.$v.'&nbsp;</td><td align="center">&nbsp;Cost List&nbsp;</td><td align="center">&nbsp;<input type="button" name="new_ci" id="new_ci" value="New cost list" />&nbsp;</td><tr>';

        $strPrint.='</table>';

提前致谢。

1 个答案:

答案 0 :(得分:0)

    $strPrint.='<tr><td align="right">&nbsp;'.++$i.'&nbsp;</td><td align="left">&nbsp;'.$v.'&nbsp;</td><td align="center">&nbsp;Cost List&nbsp;</td><td align="center">&nbsp;<input type="button" name="new_ci" id="new_ci" value="New cost list" onclick="OpenPopup(this)" />&nbsp;</td><tr>';


function(obj)
{
 // do wat ever u want
}