我的应用程序中有多个用户。在用户列表中,每个用户都有一个提交数据的按钮。数据将在弹出窗口中提交。我必须使用 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"> S.No. </th><th bgcolor="#cccccc" align="left"> Client </th><th bgcolor="#cccccc" align="center"> Cost List </th><th bgcolor="#cccccc" align="center"> Action </th><tr>';
foreach($arrclient as $k => $v)
$strPrint.='<tr><td align="right"> '.++$i.' </td><td align="left"> '.$v.' </td><td align="center"> Cost List </td><td align="center"> <input type="button" name="new_ci" id="new_ci" value="New cost list" /> </td><tr>';
$strPrint.='</table>';
提前致谢。