Eclipse開發(fā)Web項(xiàng)目

上傳人:小** 文檔編號(hào):38990064 上傳時(shí)間:2021-11-09 格式:DOC 頁數(shù):10 大小:450.50KB
收藏 版權(quán)申訴 舉報(bào) 下載
Eclipse開發(fā)Web項(xiàng)目_第1頁
第1頁 / 共10頁
Eclipse開發(fā)Web項(xiàng)目_第2頁
第2頁 / 共10頁
Eclipse開發(fā)Web項(xiàng)目_第3頁
第3頁 / 共10頁

下載文檔到電腦,查找使用更方便

19 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《Eclipse開發(fā)Web項(xiàng)目》由會(huì)員分享,可在線閱讀,更多相關(guān)《Eclipse開發(fā)Web項(xiàng)目(10頁珍藏版)》請?jiān)谘b配圖網(wǎng)上搜索。

1、編程愛好者 programmerwe nlon g@ Eclipse開發(fā) Web項(xiàng)目 1. 開發(fā)環(huán)境的搭建 -i - 1.1. 開發(fā)工具 -i - 1.2. 搭建開發(fā)環(huán)境 -1 - 2. 開發(fā)Web項(xiàng)目 -1 - 2.1. 新建Web項(xiàng)目 -1 - 2.2. 開發(fā) Servlet - 3 - 2.3. 發(fā)布Web項(xiàng)目 -5 - 2.4. 開發(fā) JSP. - 7 - 1. 開發(fā)環(huán)境的搭建 1.1. 開發(fā)工具 JDK: jdk1.6.0_17 Web Server: apache-tomcat-6.0.26 IDE : eclipse-jee-helios-SR1

2、 1.2. 搭建開發(fā)環(huán)境 由于選擇IDE作為開發(fā)的工具,IDE可以手動(dòng)配置需要的插件工具,所以搭建開發(fā)環(huán)境變 得簡單而又快捷。 (1) 安裝JDK 提示:安裝完JDK之后需要配置環(huán)境變量。 (2) 安裝 tomcat 提示:如果是解壓縮版直接解壓就 ok,如果是安裝版需要根據(jù)安裝提示完成安裝。 因?yàn)? 是使用IDE做開發(fā),所以就不需要配置 tomcat的環(huán)境變量了,不過還是建議不要太依賴于 IDE 了。 ⑶解壓縮Eclipse 提示:如果沒有安裝 JDK就無法完成Eclipse的安裝。 好了,到這里開發(fā)環(huán)境就準(zhǔn)備好了,接下來用一個(gè) demo來演示一下如何在 Eclipse中開

3、發(fā) Web項(xiàng)目。 2. 開發(fā)Web項(xiàng)目 2.1.新建Web項(xiàng)目 Eclips >File >New >Dyn amic Web Project O Dynaaic feh Proj-ect Byname Web Project Cteate & standalone Web preject *i~ acLd il tfi new Sr exis-tiing Enterprise- Apflicatiwl. Frej^et n電電 寸f Frojict lccialia-n ITe# d-f &ul t lc&.tion. Kant: C:t sttarted qu

4、i ddy by s^lectiog on o I kt pre-d.tfan.td. prajtct 亡qxlEi 珂"整 tuonm EAR neb whip □idd project hti EAR EAR ft-Cl Tl斷史 aBTiaEftK * | phw Marking sets _)kdd projset^ sck HK.t》 Earti sh 選擇 Target run time 下的 New Run time 配置 Web Server O S-er^ez KuntiBe Envirouent 回區(qū) New Server iRnntimc En

5、vliroiiflienli Dftfinj* & tvvjs .4rvAtr 0口*111。崔吐 H』d.L t 】dublI, e亡電r 孔Mdutier, 5alct lhA type sf runt lma onviEJUiPirt. tyre filter tekt | Apache T *L() A Xpa-cbte T xcid. 1 1 Apache 1 Dmc-bi ?5.0 Apache Ic

6、 陽占 mjpethli 陽 Ortclt ache Toncat v6. 0 s-iipport^ J2EE ] 2f ] 3,. 1.4』ulJ Jaw* EE 5 uid 6 斤“ ricdTiles. □ Rw"紜 locd itrver Ifau t》 ■ ■ " Next> 通過Browse選擇tomcat的安裝目錄 提示:注意tomcat的JRE版本要和Project的JRE版本一致 Fini sh> 之后,一路 Next直到Finish就oK 了 新建的Web項(xiàng)目結(jié)構(gòu)如下 Explorer demo 出 JWt-WS Web Serv

7、ices D&ploynsnt Descriptor : Java Re4urc: s.rc * 邑Libr&ries + 三 TavaScript Resources D bu"d VebC ontent -D META-INF MANIFEST.MF 白 & WB-INF 」lib X web. xml 2.2. 開發(fā) Servlet 在Project Explorer視圖的src上右鍵可以選擇 New >Servlet Next〉 選擇重寫service方法,這樣可以自動(dòng)生成代碼方便一點(diǎn) 當(dāng)然也可以全手動(dòng)的編寫 Servlet,不過不要忘記在

8、 web.xml中配置Servlet,呵呵A_A 然后Finish就完成了 Servlet的創(chuàng)建 Hello.java的源代碼如下 package org.we nlong; import java.i o.I OExcepti on; import javax.servlet.ServletExceptio n; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResp on se;

9、 public class Hello exte nds HttpServlet { protected void service(HttpServletRequest request, HttpServletResp onse resp on se) throws ServletExcepti on, I OExcepti on { System.out.pri ntl n( "Hello Servlet"); } } demo的代碼就是這樣簡單,呵呵 A_A 2.3. 發(fā)布Web項(xiàng)目 Web Server中發(fā)布 Web項(xiàng)目 Web項(xiàng)目創(chuàng)建好了,接下來的工作就是在 Win

10、dow >Show Views >Servers 在Servers視圖的空白區(qū)域右鍵 New >Server -5 - 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ Define a i^ew Server Chocse th皂 type if server lo create 編程愛好者 programmerwe nlon g@ Select th皂 server type: filter list

11、 y4 0 Server Teiieat v4. 1 Server 編程愛好者 programmerwe nlon g@ Server Ton亡直t Server Tquus.t 詢 0 Samr T a + wT 仃 U dWT2d rublishes ai^d runs JZEE locel To?cat server. and Java EE Veb projecis and server ccrifaguraticns t a Servers hos:t naj>e Survftr mm : Server runtime envirom

12、riant. Q— u ldcalhost Tiirictt vG. 0 Srvr git IqtQhqit Apacbe Toicat v6. 0 V AJA”. ConfiETfljr電 lrimtimE 電:nb^jronjTiEntSu -. [ gsH〉 ] [ Eini百h」[ 匚蛆亡亡1 Mix Add and Remove Modify ihe :r皂sources that are configured on the server Iov* rtsqmrcto tKi t?o ^v^ilable cd|li E^r ths op iKa if

13、erv9? < Sack Btxl > g>ni ah ] | CaMel 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ Finish 之后就可以在 Servers下啟動(dòng)tomcat 了 啟動(dòng)tomcat之后會(huì)在Con sole下打印出很多tomcat的啟動(dòng)信息 如果沒有異常出現(xiàn),表示 demo發(fā)布成功 即使出現(xiàn)警告信息也沒有關(guān)系 編程愛好者 programmerwe nlon g@ 在瀏覽器中訪問 http://localhost:8080/demo/Hello 如果沒有出

14、現(xiàn)異常信息,并且在 Con sole中輸出 Hello Servlet 表示Servlet測試成功 A_A 只是做了一個(gè)特別簡單的 demo,說明問題就oK 24開發(fā)JSP 在WebContent目錄下新建JSP File 回區(qū) 編程愛好者 programmerwe nlon g@ ]SP Create:扛 ntw JSF file. demo/1 ebC out ent 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ fi- b s rv 軸已曰曰eser

15、 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ Filfr ma世t: jsp Advanced Hext > | nish | [ Cancel Next>之后就直接Finish index.jsp的源代碼如下 <%@page language ="java" contentType ="text/html; charset=ISO-8859-1" pageE ncodi ng ="ISO-8859-1" %>

16、E html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" > lnsert title here </ title > </ head > vbody > <h1 align ="center" >Hello JSP </ hl > -7 - </ body > </ html > 編程愛好者 programmerwe nlon g@ 編程愛好者 programmerwe nlon g@ 重新部署demo項(xiàng)目就可以看到效果了 JavaEE的水很深,要想成為一個(gè) JavaEE工程師,還要繼續(xù)努力 Come on! </p> </div> <div id="cceicwy" class="readmore" onclick="showmore()" style="background-color: transparent; height: auto; margin: 0px 0px; padding: 20px 0px 0px 0px;"><span id="ysggymc" class="btn-readmore" style="background-color: transparent;"><em style="font-style: normal">展開</em>閱讀全文<i></i></span></div> <script type="text/javascript"> function showmore() { $(".readmore").hide(); $(".detail-article").css({ "height":"auto", "overflow": "hidden" }); } $(document).ready(function() { var dh = $(".detail-article").height(); if(dh >100) { $(".detail-article").css({ "height":"100px", "overflow": "hidden" }); } else { $(".readmore").hide(); } }); </script> </div> <script type="text/javascript"> var defaultShowPage = parseInt("3"); var id = "38990064"; var total_page = "10"; var mfull = false; var mshow = false; function DownLoad() { window.location.href='http://weibangfood.com.cn/d-38990064.html'; } function relate() { $("html,body").animate({ scrollTop: 0 }, 500); $('#relate').toggle(); if (!mshow) { var relateScroll = new iScroll("relatelist", { zoom: true, hScrollbar: false, vScrollbar: true, bounce: true, momentum: false }); } } </script> <script> var pre = "https://file2.zhuangpeitu.com/fileroot2/2021-11/4/53159804-9f19-4aee-a9f8-af649524c1d4/53159804-9f19-4aee-a9f8-af649524c1d4"; var freepage = parseInt('10'); var total_c = parseInt('10'); var start = parseInt('3'); var adcount = 0; var adindex = 0; var adType_list = ";1;2;5;6;7;"; var end = start; $("#spanpage").text(total_c-start); function ShowSvg() { end = start + defaultShowPage; if (end > freepage) end = freepage; for (var i = start; i < end; i++) { var imgurl = pre + (i + 1) + '.gif'; var html = "<img src='" + imgurl + "' onerror=\"this.src='/images/s.gif'\" alt=\"Eclipse開發(fā)Web項(xiàng)目_第" + (i + 1) + "頁\" width='100%'/>"; $("#page").append("<div id="aycwmcg" class='page'>" + html + "</div>"); $("#page").append("<div id="seoekag" class='pageSize'>第" + (i + 1) + "頁 / 共" + total_c + "頁</div>"); if(adcount > 0 && adType_list.indexOf(";"+(i+1)+";")>-1) { if(adindex > (adcount-1)) adindex = 0; $("#page").append("<div id="kayuis4" class='pagead' id='addiv"+(i + 1)+"'></div>"); document.getElementById("addiv"+(i + 1)+"").innerHTML =document.getElementById("adpre" + adindex).outerHTML; adindex += 1; } } start = end; $("#spanpage").text(total_c-start); if (start > (freepage - 1)) { if(start < total_c) $("#ftip").html("親,很抱歉,此頁已超出免費(fèi)預(yù)覽范圍啦!<br/>如果喜歡就下載吧,價(jià)低環(huán)保!"); else $("#ftip").html("最后一頁預(yù)覽完了!喜歡就下載吧,查找使用更方便"); if($("#nftip"))$("#nftip").html("此文檔不允許下載,在線閱讀到最后一頁了。"); $("#ntip2").hide(); $("#ntip").hide(); } } //$(document).ready(function () { // ShowSvg(); //}); </script> <div style="margin:10px 0px; text-align:center;"> <div style="margin: auto; height:300px; overflow:hidden; text-align: center;"><dl class="works-intro gray2 " style="text-align:left;border:solid 1px #ddd;"> <dd style="font-size:14px; padding-left:20px; width:96%; line-height:22px;"><b>溫馨提示: </b><br /> 1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。<br> 2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。<br> 3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。<br> 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。<br> 5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。<br> 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。<br> 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。<br> </dd> </dl></div> </div> <div id="0qkw40q" class="widget-box pt0" style="border: none;"> <h2 class="h4 widget-box__title">最新文檔</h2> <ul class="taglist--inline multi"> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484563.html" target="_blank">2025《增值稅法》高質(zhì)量發(fā)展的增值稅制度規(guī)范增值稅的征收和繳納</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484562.html" target="_blank">深入學(xué)習(xí)《中華人民共和國科學(xué)技術(shù)普及法》推進(jìn)實(shí)現(xiàn)高水平科技自立自強(qiáng)推動(dòng)經(jīng)濟(jì)發(fā)展和社會(huì)進(jìn)步</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484561.html" target="_blank">激揚(yáng)正氣淬煉本色踐行使命廉潔從政黨課</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484560.html" target="_blank">加強(qiáng)廉潔文化建設(shè)夯實(shí)廉政思想根基培育風(fēng)清氣正的政治生態(tài)</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484559.html" target="_blank">深入學(xué)習(xí)2024《突發(fā)事件應(yīng)對法》全文提高突發(fā)事件預(yù)防和應(yīng)對能力規(guī)范突發(fā)事件應(yīng)對活動(dòng)保護(hù)人民生命財(cái)產(chǎn)安全</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484558.html" target="_blank">2023年四年級(jí)數(shù)學(xué)上冊第一輪單元滾動(dòng)復(fù)習(xí)第10天平行四邊形和梯形作業(yè)課件新人教版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484557.html" target="_blank">2023年四年級(jí)數(shù)學(xué)上冊第14單元階段性綜合復(fù)習(xí)作業(yè)課件新人教版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484556.html" target="_blank">2023年四年級(jí)數(shù)學(xué)上冊易錯(cuò)清單十五課件新人教版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484555.html" target="_blank">2023年四年級(jí)數(shù)學(xué)上冊易錯(cuò)清單七課件西師大版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484554.html" target="_blank">2023年五年級(jí)數(shù)學(xué)下冊易錯(cuò)清單六作業(yè)課件北師大版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484553.html" target="_blank">2023年五年級(jí)數(shù)學(xué)下冊易錯(cuò)清單二作業(yè)課件北師大版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484552.html" target="_blank">2023年五年級(jí)數(shù)學(xué)下冊四分?jǐn)?shù)的意義和性質(zhì)第10課時(shí)異分母分?jǐn)?shù)的大小比較作業(yè)課件蘇教版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484551.html" target="_blank">2023年五年級(jí)數(shù)學(xué)下冊周周練四作業(yè)課件北師大版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484550.html" target="_blank">2023年五年級(jí)數(shù)學(xué)下冊六折線統(tǒng)計(jì)圖單元復(fù)習(xí)卡作業(yè)課件西師大版</a></li> <li><a class="tag book" href="http://weibangfood.com.cn/article/253484549.html" target="_blank">2023年四年級(jí)數(shù)學(xué)上冊6除數(shù)是兩位數(shù)的除法單元易錯(cuò)集錦一作業(yè)課件新人教版</a></li> </ul> </div> </div> </div> </div> <div id="6qqiiua" class="u-width265 u-floatRight js-sidebar" style="width:265px"> <div class="kou8yqo" id="homeTab2" style="width:265px;margin-top:-12px;"> <div> <a href="http://weibangfood.com.cn/d-38990064.html" class="download" style="background-position-x:50px; text-indent:10px;">點(diǎn)擊下載此資源</a> </div> <div id="qwieyek" class="box hot-keywords mt20" style="overflow: hidden; width: 100%; border: solid 1px #dedede;" id="relatebox"> <div id="cugc02s" class="boxHd" style="padding-bottom: 0px;"> <h2 class="fl font-normal font16 font-yahei" style="font-size: 16px; font-weight: 100; margin-left: 0px; margin-top: 3px; position: relative; text-indent: 34px; font-family: 微軟雅黑"> <svg t="1586227845664" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg" p-id="6477" width="20" height="20" style="position: absolute; left: 10px; top: -1px;"> <path d="M768.1 273.6c-52.9-98.8-155.5-162.1-264.6-162.1-129.8 0-245.2 83.6-285.2 204.9C96.9 350.6 6.9 472.7 6.9 606.4c0 162.9 131.8 300.5 287.8 300.5 12.7 0 23-10.3 23-23s-10.3-23-23-23C163.7 860.9 53 744.3 53 606.4 53 488.9 134 382.1 241.5 358l13.4-3 3.7-13.2c30.3-108.4 131-184.2 244.8-184.2 95.5 0 185.2 57.6 228.7 146.8l5.3 10.8 11.9 1.9C876.8 337 973 451.7 973 583.8c0 150.2-121.5 277.1-265.4 277.1-12.7 0-23 10.3-23 23s10.3 23 23 23c168.8 0 311.4-148 311.4-323.2C1019 433.3 911.9 302.1 768.1 273.6z" p-id="6478" fill="#bfbfbf"></path><path d="M325.9 683.8l172 198.6c4.8 5.6 11.8 8.7 19.1 8.7 7.3 0 14.3-3.2 19.1-8.7l172-198.6-38.3-33.2L540 800.7 540 465l-51 0 0 330.2L364 650.6 325.9 683.8z" p-id="6479" fill="#bfbfbf"></path> </svg> 相關(guān)資源</h2><a style="display:block; position:absolute;right:10px; top:2px; color:#888;font-size:13px;" target="_blank" rel="nofollow" href="http://weibangfood.com.cn/search.html?q=Eclipse%e5%bc%80%e5%8f%91Web%e9%a1%b9%e7%9b%ae" >更多</a> </div> <div class="i4y46ok" id="author-works-list" class="author-works-list bgF"> <div class="6qiosm2" id="xgwendang" style=" line-height:30px; text-align:center;height:460px;border-radius:3px;" > <div style="padding-top:140px; "> <div>正為您匹配相似的精品文檔</div> <div><img src="/images/jdt.gif" style=" width:220px; margin: 10px 0px" /></div> </div> <script type="text/javascript"> function xg() { var myiframe = '<iframe scrolling="no" src="https://smart.zhuangpeitu.com/ajax.aspx?type=pc&q=Eclipse%e5%bc%80%e5%8f%91Web%e9%a1%b9%e7%9b%ae&id=38990064&sign=b5fceaebe7d2dc33ff314266aa420194" style="width:100%; height:460px;;" frameborder="0" enableviewstate="false" ></iframe>'; document.getElementById("xgwendang").innerHTML = myiframe; } setTimeout('xg()', 500) </script> </div> </div> </div> </div><div id="sq2cymy" class="box hot-keywords mt10" id="box3" style="overflow: hidden;width: 100%; border:solid 1px #dedede;"> <div id="gi46ags" class="boxHd" style="border: none;padding-bottom: 0px;"> <h2 class="fl font-normal font16 font-yahei" style="font-size: 16px; font-weight: 100;position:relative; text-indent:34px; margin-left: 0px; margin-top: 3px; font-family: 微軟雅黑"> <svg t="1586228055974" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg" p-id="7665" width="20" height="20" style="position:absolute;left:10px; top:0px;"><path d="M870 154c-13.1-13.1-30.4-21.8-49.8-24L527.8 97.5c-25.2-2.8-50.3 6-68.3 24l-326 326c-48.7 48.7-48.7 128.5 0 177.2l265.8 265.8c48.7 48.7 128.5 48.7 177.2 0l326-326c17.9-17.9 26.8-43.1 24-68.3L894 203.8c-2.2-19.4-10.9-36.8-24-49.8z m3.2 381.1l-326 326c-15.7 15.7-36.8 24.4-59.3 24.4s-43.5-8.7-59.3-24.4L162.9 595.3c-15.7-15.7-24.4-36.8-24.4-59.3s8.7-43.5 24.4-59.2l326-326c7.9-7.9 18.5-12.3 29.7-12.3 1.5 0 3.1 0.1 4.6 0.3l292.4 32.5c9.6 1.1 18.2 5.2 25 12 6.8 6.8 11 15.5 12.1 25.1l32.5 292.3c1.5 12.8-2.9 25.3-12 34.4z" p-id="7666" fill="#bfbfbf"></path><path d="M723.3 217.7c-45.8 0-83 37.2-83 83s37.2 83 83 83 83-37.2 83-83c0-45.9-37.1-83-83-83z m0 124.5c-22.9 0-41.5-18.6-41.5-41.5s18.6-41.5 41.5-41.5 41.5 18.6 41.5 41.5-18.6 41.5-41.5 41.5z" p-id="7667" fill="#bfbfbf"></path></svg> 相關(guān)搜索</h2> </div> <input name="ctl00$Content$hiddenCategoryID" type="hidden" id="Content_hiddenCategoryID" /> <div id="aiw0cas" class="hot-keywords-list" style="padding:10px 20px;"> <a target="_blank" rel="nofollow" href="http://weibangfood.com.cn/search.html?q=Eclipse" class="tag-item ico" title="Eclipse" hidefocus="true"><span id="wk2im2s" class="ico"><em> Eclipse</em></span></a> <a target="_blank" rel="nofollow" href="http://weibangfood.com.cn/search.html?q=%e5%bc%80%e5%8f%91" class="tag-item ico" title="開發(fā)" hidefocus="true"><span id="k8u0ymo" class="ico"><em> 開發(fā)</em></span></a> <a target="_blank" rel="nofollow" href="http://weibangfood.com.cn/search.html?q=Web" class="tag-item ico" title="Web" hidefocus="true"><span id="2ymcyks" class="ico"><em> Web</em></span></a> <a target="_blank" rel="nofollow" href="http://weibangfood.com.cn/search.html?q=%e9%a1%b9%e7%9b%ae" class="tag-item ico" title="項(xiàng)目" hidefocus="true"><span id="20yumio" class="ico"><em> 項(xiàng)目</em></span></a> </div> </div> </div> </div> </div> <script type="text/javascript" src="http://weibangfood.com.cn/js/artDialog-5.0.3/artDialog.min.js"></script> <script> var uid = "0"; var obj = null; function popFolder() { var html = '<iframe src="/FlexPaper/BookFolderSelect.aspx?id=38990064" scrolling="no" frameborder="0" style="width: 550px; height: 300px"></iframe>'; if (uid == "0") { window.location.href="http://weibangfood.com.cn/login.aspx?returl=http%3a%2f%2fweibangfood.com.cn%2fView_renren.aspx%3fid%3d38990064"; return; } obj = art.dialog({ title: '收藏資源', content: html, cancelValue: '取消', width: '540', height: '380', skin: 'blue', lock: true, background: '#666', opacity: .6, duration: 300, fixed: true, left: '50%', top: '38.2%', zIndex: 1987, resize: true, drag: true }); } function CloseMe() { obj.close(); } var tp2 = $('#homeTab2').offset().top; $(window).bind("scroll", function (event) { var Y = $(this).scrollTop(); if (Y > tp2 && $('#homeTab2').css("position") != "fixed") { $('#homeTab2').css({ position: "fixed", width: "265px", top: "15px", zIndex: "999" }); } else if (Y <= tp2 && $('#homeTab2').css("position") == "fixed") { $('#homeTab2').css({ position: "static", zIndex: "1" }); } }); </script> </div> <div id="uoeawk0" class="cssnone"> <iframe src="http://weibangfood.com.cn/BookRead.aspx?id=P2qqttKiQ5%2fbl2La9mCHqQ%3d%3d&to=M8udVb08uj6ll8Wk%2fKUMFsMs3BESSNCAdikD5T5iotBEY72nHx6UREMZ2r%2bzXFWgQDogFEl7T46p%2fz6oX7J6i5UhAW1gyNFL6w8hUXS37wJ7kA4Gz2ennFl5%2bblPxl0J%2f65FcaXMjO1hTzgQ8Vh1Sbt7PQwVslSeFSBMHwTCGH8R7CQbFLFArWTQqow%2bjCo6t9SKCRW%2f7UJZvXyyP0qH3A%3d%3d" frameborder="0" style="width: 0px; height: 0px"> </iframe> </div> <!-- JiaThis Button END --> <span id="LabelScript"></span> </div> </div> <script>function popLogin() { window.location.href = '/login.aspx?returl=http%3a%2f%2fweibangfood.com.cn%2fView_renren.aspx%3fid%3d38990064'; return; }</script> <script type="text/javascript"> var objjubao = null; function jubao() { var html = '<iframe src="http://weibangfood.com.cn/UserManage/ReportBack.aspx?id=38990064&url=vZ7Tt5whIvr/dRdNgGIKyPKNDzA93OKs oH1UA29j7gQz3uKhWEeADre7wXUKtrOLRDQK6NVC98=" scrolling="no" frameborder="0" style="width: 600px; height: 420px"></iframe>'; objjubao = art.dialog({ title: '非法內(nèi)容有獎(jiǎng)舉報(bào)', content: html, close: Closejubao, width: '700', height: '470', skin: 'blue', lock: true, background: '#666', opacity: .6, duration: 300, fixed: true, left: '50%', top: '38.2%', zIndex: 1987, resize: true, drag: true }); } function Closejubao() { objjubao.close(); } </script> <!--foot--> <div id="swage2k" class="bg_100 foot_nav_bg" style=" min-width:1200px;"> <div id="s4248ek" class="foot_nav"> <a href="http://weibangfood.com.cn/h-33.html" target="_blank" >關(guān)于我們</a> - <a href="http://weibangfood.com.cn/h-34.html" target="_blank" >網(wǎng)站聲明</a> - <a href="http://weibangfood.com.cn/h-35.html" target="_blank" > 網(wǎng)站地圖</a> - <a href="http://weibangfood.com.cn/sitemap.html" target="_blank" > 資源地圖</a> - <a href="http://weibangfood.com.cn/friend.aspx" target="_blank" >友情鏈接</a> - <a rel="nofollow" target="_blank" >網(wǎng)站客服</a> - <a rel="nofollow" href="http://weibangfood.com.cn/h-38.html" target="_blank" >聯(lián)系我們</a> </div> </div> <div id="eie24cm" class="bg_100 siteInner_bg" style=" min-width:1200px;"> <div id="ae266wq" class="siteInner"> <p>copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007</p><p><a target="_blank"><span><span>備案號(hào):</span></span><span>蜀</span><span>ICP</span><span>備</span><span>2024067431</span><span>號(hào)</span><span>-1</span></a> <span>川公網(wǎng)安備51140202000466號(hào)</span></p><p><span><span><br /></span></span></p><p><span><span>本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知<span>裝配圖</span>網(wǎng),我們立即給予刪除!</span></span></p> </div> </div> <!--foot end--> <script type="text/javascript" src="http://weibangfood.com.cn/JS/jquery.lazyload.js"></script> <script type="text/javascript" charset="utf-8"> $("img.lazys").lazyload({ threshold: 200, effect: "fadeIn" }); </script> <script type="text/javascript" src="http://weibangfood.com.cn/umeditor/xss.js"></script> <script>(function() {var _53code = document.createElement("script");_53code.src = "https://tb.53kf.com/code/code/f0b69d13c371916b96c564bba41b9dae8/1";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(_53code, s);})();</script><script>var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://#/hm.js?f6f8927201e0ce73292b83a428843c78"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://weibangfood.com.cn/" title="九色91精品国产网站">九色91精品国产网站</a> <div class="friend-links"> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="sm46i" class="pl_css_ganrao" style="display: none;"><rt id="sm46i"></rt><tbody id="sm46i"></tbody><td id="sm46i"></td><tr id="sm46i"></tr><strong id="sm46i"></strong><cite id="sm46i"></cite><abbr id="sm46i"></abbr><delect id="sm46i"></delect><noframes id="sm46i"></noframes><option id="sm46i"></option><input id="sm46i"></input><xmp id="sm46i"></xmp><option id="sm46i"></option><small id="sm46i"></small><noscript id="sm46i"></noscript><dfn id="sm46i"></dfn><kbd id="sm46i"></kbd><noframes id="sm46i"></noframes><noscript id="sm46i"></noscript><nav id="sm46i"></nav><source id="sm46i"></source><pre id="sm46i"></pre><tr id="sm46i"></tr><rt id="sm46i"></rt><blockquote id="sm46i"></blockquote><li id="sm46i"></li><noframes id="sm46i"></noframes><pre id="sm46i"></pre><button id="sm46i"></button><delect id="sm46i"></delect><center id="sm46i"></center><blockquote id="sm46i"></blockquote><acronym id="sm46i"></acronym><abbr id="sm46i"></abbr><noframes id="sm46i"></noframes><rt id="sm46i"></rt><noframes id="sm46i"></noframes><input id="sm46i"></input><strong id="sm46i"></strong><noscript id="sm46i"></noscript><blockquote id="sm46i"></blockquote><strong id="sm46i"></strong><option id="sm46i"></option><dfn id="sm46i"></dfn><center id="sm46i"></center><acronym id="sm46i"></acronym><option id="sm46i"></option><li id="sm46i"></li><source id="sm46i"></source><noscript id="sm46i"></noscript></div> </html>