JSP中如何使用JQuery?

來源:互聯網
上載者:User

首先要匯入JQuery的包檔案,可以在這裡
下載。

然後在JSP中引入包:

<mce:script src="lib/jquery-1.5.2.js" mce_src="lib/jquery-1.5.2.js" type="text/javascript"></mce:script>

 

接下來再引入自己的js:

<mce:script src="my.js" mce_src="my.js" type="text/javascript"></mce:script>

 

我的my.js檔案內容如下:

$(document).ready(function() {<br /> $("<div><p>Hello</p></div>").appendTo("body");</p><p> $("#stop").css("background","yellow");</p><p> $("li").toggle(<br /> function () {<br /> $(this).css({"list-style-type":"disc", "color":"blue"});<br /> },<br /> function () {<br /> $(this).css({"list-style-type":"disc", "color":"red"});<br /> },<br /> function () {<br /> $(this).css({"list-style-type":"disc", "color":"gray"});<br /> }<br /> );<br />});

 

測試頁面MyJQueryTest.html的內容如下:

<html xmlns="http://www.w3.org/1999/xhtml"><br /><head><br /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br /><title>My jQuery Test</title><br /><mce:script src="lib/jquery-1.5.2.js" mce_src="lib/jquery-1.5.2.js" type="text/javascript"></mce:script><br /><mce:script src="my.js" mce_src="my.js" type="text/javascript"></mce:script><br /></head><br /><body><br /><button>Change colors</button><br /><br/><br /><span>span</span><br /><div>div1</div><br /><div>div2</div><br /><div>div3</div><br /><div>div4</div><br /><div id="stop">Stop here</div><br /><div>div6</div><br /><div>div7</div><br /><div>div8</div><br /><br/><br /><ul><br /> <li>li1</li><br /> <li>li2</li><br /> <li>li3</li><br /> <li>li4</li><br /> <li>li5</li><br /></ul><br /></body><br /></html>

 

運行效果如下:

前:

 

後:

 

最後值得注意的是,JQuery的包檔案的引入必須在js引入的前面,不然JQuery沒有效果。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.