-1

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

例如

 <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>';

提前致谢。

4

1 回答 1

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
}
于 2013-02-12T07:13:45.067 回答