我的应用中有多个用户。在用户列表中,每个用户都有一个数据提交按钮。数据将以弹出方式提交。我必须使用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"> 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>';
提前致谢。
答案 0 :(得分:0)
$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" onclick="OpenPopup(this)" /> </td><tr>';
function(obj)
{
// do wat ever u want
}