程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 數據庫-在一個jsp頁面中,點擊一個按鈕,彈出另一個jsp頁面

數據庫-在一個jsp頁面中,點擊一個按鈕,彈出另一個jsp頁面

編輯:編程綜合問答
在一個jsp頁面中,點擊一個按鈕,彈出另一個jsp頁面

add.jsp:圖片說明
select.jsp:圖片說明
如圖,共有兩個jsp頁面,一個add.jsp
select.jsp,在add.jsp上面有一個請選擇按鈕,點擊請選擇按鈕後,彈出select.jsp頁面,這個頁面上是從數據庫中遍歷的企業,選中一條數據,點擊確認,select.jsp頁面關閉,並將結果帶到add.jsp請選擇前面的文本框裡面。現在兩個jsp頁面我已經做好了,那麼應該如何才能夠得到想要的結果,action層是如何實現的?拜求解決。

好吧,繼續昨天的問題:
add.jsp
select.jsp
應該如何將所選擇的值帶回到add.jsp推薦企業後的文本框中。
(add.jsp源碼:<br> function closeYmtPage() {<br> window.history.go(-1);<br> }<br> function findztype() {<br> var idstr = $(&quot;#fwdl&quot;).val();<br> $.post(&quot;fw.do?action=findzType&quot;,{idstr:idstr},function(data){<br> var types=eval(&#39;(&#39; + data + &#39;)&#39;);<br> var typelist = types.typesList;<br> $(&quot;#fwxl&quot;).empty();<br> $(&quot;#fwxl&quot;).append(&#39;<option value="">請選擇</option>&#39;);<br> $.each(typelist, function (i, item) {<br><br> var str =&#39;<option value="'+item.id+'" title="'+item.name+'">&#39;+item.name+&#39;</option>&#39;;<br> $(&quot;#fwxl&quot;).append(str); <br> });<br> });<br> }</p> <pre><code> //推薦企業按鈕 function openwindow(){ window.showModalDialog(&quot;/jxw/xq.do?action=showTjList&quot;,window, &quot;status:no;scroll:yes; dialogWidth:400px;dialogHeight:400px&quot;); } function addxm(flag){ $(&quot;#fbState&quot;).val(flag); var xqName =$(&quot;#xqName&quot;).val(); if(xqName ==&quot;&quot;) { alert(&quot;需求名稱不能為空!&quot;); return; } if($(&quot;#fwdl&quot;).val()==&quot;&quot; || $(&quot;#fwXl&quot;).val()==&quot;&quot;){ alert(&quot;服務類別不能為空&quot;); return; } $(&quot;#addForm&quot;).ajaxSubmit({ beforeSubmit : function() { $(&quot;#saveBtn&quot;).attr(&quot;disabled&quot;, true); }, success : function(data) { var start = data.indexOf(&quot;&gt;&quot;); if (start != -1) { var end = data.indexOf(&quot;&lt;&quot;,start+1); if (end != -1) { data = data.substring(start+1, end); } } if (data == &quot;ok&quot;) { alert(&quot;添加需求成功&quot;); window.location.href=&#39;&lt;c:url value=&quot;cartweb.do?action=loadFwxqPage&amp;pageNo=1&quot;/&gt;&#39;; } if (data == &quot;error&quot;) { alert(&quot;添加需求失敗&quot;); } $(&quot;#saveBtn&quot;).attr(&quot;disabled&quot;, false); }, complete : function() { $(&quot;#saveBtn&quot;).attr(&quot;disabled&quot;, false); }, error : function() { $(&quot;#saveBtn&quot;).attr(&quot;disabled&quot;, false); alert(&quot;請求錯誤&quot;); } }); } </code></pre> <p>function checkfkfs(){</p> <pre><code> var fkfs=$(&quot;#fkfs&quot;).val(); if(fkfs==&quot;2&quot;) { document.getElementById(&quot;price&quot;).disabled=&quot;disabled&quot;; }else{ $(&quot;#price&quot;).removeAttr(&quot;disabled&quot;); } } function addxqlc() { window.parent.document.getElementById(&quot;btnxqOk&quot;).click(); } &lt;/script&gt; </code></pre> <p></head></p> <p><body><br> <div class="main_nav"><br> <div class="lb_nav" id="current_pageDiv" style="width: 100%"><br> <div class="lb_nav_tu">添加需求</div><br> <a href="javascript:void(0)" onclick="addxqlc()"<br> style="float:right;font-size:16px;font-style:oblique;padding-right:20px">操作說明</a><br> </div><br> <form id="addForm" action="<c:url value='/xq.do?action=doAddxq'/>&quot;<br> method=&quot;post&quot; id=&quot;addForm&quot; name=&quot;addForm&quot;&gt;<br> <input type="hidden" id="fbfs" name="fbfs" value="1" /><br> <table cellpadding="0" cellspacing="0" class="cx_table"><br> <tr><br> <th><b><em></b>需求名稱:</th><br> <td height="25" align="left" bgcolor="#FFFFFF" colspan="3"><input<br> type="text" id="xqName" name="xqName" value="" maxlength="50" /></td><br> </tr><br> <tr><br> <th><b></em></b>付款方式:</th><br> <td height="25" align="left" bgcolor="#FFFFFF"><select<br> id="fkfs" name="fkfs" onchange="checkfkfs()"><br> <option value="1">具體價格</option><br> <option value="2">面議</option><br> </select></td><br> <th><b><em></b>預算價格(元):</th><br> <td height="25" align="left" bgcolor="#FFFFFF"><input<br> type="text" id="price" name="price" value=""<br> onkeyup="value=value.replace(/[^\d]/g,'') "<br> onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))" /><br> </td><br> </tr><br> <tr><br> <th><b></em></b>服務所屬大類:</th><br> <td height="25" align="left" bgcolor="#FFFFFF"><select<br> name="fwdl" id="fwdl" class="select_field" onchange="findztype()"><br> <c:forEach items="${fwdl}" var="domain"><br> <option value="${domain.id }" title="${domain.name }"><br> ${domain.name }</option><br> <a href="/c:forEach">/c:forEach</a><br> </select></td><br> <th><b><em></b>服務所屬小類:</th><br> <td height="25" align="left" colspan="3" bgcolor="#FFFFFF"><select<br> name="fwxl" id="fwxl" class="select_field"><br> <c:forEach items="${fwxl}" var="domain"><br> <option value="${domain.id }" title="${domain.name }"><br> ${domain.name }</option><br> <a href="/c:forEach">/c:forEach</a><br> </select></td><br> </tr><br> <tr><br> <th><b></em></b>需求內容:</th><br> <td height="25" align="left" colspan="3" bgcolor="#FFFFFF"><script<br> type="text/plain" id="myEditor" name="contents"> type="text/javascript"><br> var Editor= new UE.ui.Editor({initialFrameWidth:&#39;600&#39;,initialFrameHeight:&#39;200&#39;,toolbars:[[&#39;fullscreen&#39;, &#39;undo&#39;, &#39;redo&#39;, &#39;|&#39;,<br> &#39;bold&#39;, &#39;italic&#39;, &#39;underline&#39;, &#39;fontborder&#39;, &#39;strikethrough&#39;, &#39;superscript&#39;, &#39;subscript&#39;, &#39;removeformat&#39;, &#39;formatmatch&#39;, &#39;autotypeset&#39;, &#39;blockquote&#39;, &#39;pasteplain&#39;, &#39;|&#39;, &#39;forecolor&#39;, &#39;backcolor&#39;, &#39;insertorderedlist&#39;, &#39;insertunorderedlist&#39;, &#39;selectall&#39;, &#39;cleardoc&#39;, &#39;|&#39;,<br> &#39;rowspacingtop&#39;, &#39;rowspacingbottom&#39;, &#39;lineheight&#39;, &#39;|&#39;,<br> &#39;customstyle&#39;, &#39;paragraph&#39;, &#39;fontfamily&#39;, &#39;fontsize&#39;, &#39;|&#39;,<br> &#39;directionalityltr&#39;, &#39;directionalityrtl&#39;, &#39;indent&#39;, &#39;|&#39;,<br> &#39;justifyleft&#39;, &#39;justifycenter&#39;, &#39;justifyright&#39;, &#39;justifyjustify&#39;, &#39;|&#39;, &#39;touppercase&#39;, &#39;tolowercase&#39;, &#39;|&#39;,<br> &#39;link&#39;, &#39;unlink&#39;, &#39;anchor&#39;, &#39;|&#39;, &#39;imagenone&#39;, &#39;imageleft&#39;, &#39;imageright&#39;, &#39;imagecenter&#39;, &#39;|&#39;,<br> &#39;insertimage&#39;, &#39;emotion&#39;, &#39;insertvideo&#39;, &#39;music&#39;, &#39;attachment&#39;, &#39;map&#39;, &#39;gmap&#39;, &#39;insertframe&#39;,&#39;pagebreak&#39;, &#39;template&#39;, &#39;background&#39;, &#39;|&#39;,<br> &#39;horizontal&#39;, &#39;date&#39;, &#39;time&#39;, &#39;spechars&#39;, &#39;snapscreen&#39;, &#39;wordimage&#39;, &#39;|&#39;,<br> &#39;inserttable&#39;, &#39;deletetable&#39;, &#39;insertparagraphbeforetable&#39;, &#39;insertrow&#39;, &#39;deleterow&#39;, &#39;insertcol&#39;, &#39;deletecol&#39;, &#39;mergecells&#39;, &#39;mergeright&#39;, &#39;mergedown&#39;, &#39;splittocells&#39;, &#39;splittorows&#39;, &#39;splittocols&#39;, &#39;|&#39;,<br> &#39;print&#39;, &#39;preview&#39;, &#39;searchreplace&#39;, &#39;help&#39;]]<br> ,elementPathEnabled : false});<br> Editor.render(&#39;myEditor&#39;);<br>


*推薦企業:
readonly="readonly" class="cl_textarea_small" name="xqName"
id="xqName" width="100"> name=inputboxbt value=請選擇 onclick="openwindow();">



type="button" value="保 存" id="saveBtn" class="btn_bg"
onclick="addxm('1');" /> class="btn_bg" /> onclick="closeYmtPage();" />








  • 當前位置:

  • 添加需求->推薦企業選擇->





<!--檢索區域開始 --
<!--檢索區域結束 -->
<!--按鈕區域開始 -->

請選擇企業:



<!--按鈕區域結束 -->



<!--

-->




onclick="checkOrCancel(this);" class="textCursor" />

序號
企業名稱


class="grid_dark"/c:if
class="grid_dark"/c:if
id="${domain1.id }">
name="ifCheck" style="cursor: pointer;" id="ifCheck"
onClick="result(this.form)" /> type="hidden" name="qymc.id" value="" />
${status.count }
${domain1.qymc }

/c:forEach

            </div>

        </div>
    </div>
</div>

最佳回答:


直接彈窗,裡面沒有內容,只是前台js的調用,如果彈窗裡面有數據,就要調用action了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved