作者: kentpeng
転載元を明記してください:
linkman/list.jsp:
<input type="button" value="选择客户" onclick="window.open('${pageContext.request.contextPath}/CustomerAction_list?select=true','','width=600,height=300')" />
couストマー/リスト。
function selectCustomer(cust_id,cust_name){//获得添加页面的window对象var win = window.opener;//获得添加页面的document对象var doc = win.document;//获得隐藏域,和 文本框,并赋值doc.getElementById("cust_id").value=cust_id; doc.getElementById("cust_name").value=cust_name;//关闭当前窗口 window.close(); };
<s:if test="#parameters.select==null"><a href="${pageContext.request.contextPath }/CustomerAction_toEdit?cust_id=<s:property value="#cust.cust_id" />">修改</a> <a href="${pageContext.request.contextPath }/customerServlet?method=delete&custId=${customer.cust_id}">删除</a></s:if><s:else><input type="button" value="选择" onclick="selectCustomer(<s:property value="#cust.cust_id" />,'<s:property value="#cust.cust_name" />')" /></s:else>
注:同じメソッドがバックグラウンドで使用され、機能の追加と更新を完了します
以上がJAVAEE--連絡先の追加、リスト表示、変更機能の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。