在JavaScript檔案中讀取properties檔案的方法__Java

來源:互聯網
上載者:User

假設有JavaScript檔案叫做:readproperties.js,這個檔案需要讀取config.properties這個設定檔,步驟如下:

1、  下載外掛程式jquery.i18n.properties-min-1.0.9.js,在eclipse中放到合適的目錄下。由於需要jQuery的支援,所以也需要jquery外掛程式,在這裡選擇jquery-1.7.1.min.js(jquery.i18n.properties-min-1.0.9.js這個外掛程式對jQuery沒有版本要求,可以使用任何版本的jQuery外掛程式),如下圖所示:


2、  在引入readproperties.js的JSP檔案中做如下聲明: [html] view plain copy print ? <script src="js/jquery-1.7.1.min.js" language="javascript">   </script>      <script type="text/javascript" src="js/jquery.i18n.properties-min-1.0.9.js">    </script>  

<script src="js/jquery-1.7.1.min.js" language="javascript"></script><script type="text/javascript" src="js/jquery.i18n.properties-min-1.0.9.js"> </script>

其中的路徑根據實際情況作出調整。


3、在readproperties.js中,編寫如下函數擷取properties檔案中的值: [javascript] view plain copy print ? function loadProperties(){       jQuery.i18n.properties({// 載入properties檔案       name:'ISPindex', // properties檔案名稱       path:'i18n/', // properties檔案路徑       mode:'map', // 用 Map 的方式使用資源檔中的值       callback: function() {// 載入成功後設定顯示內容           alert($.i18n.prop(“isp_index”));//其中isp_index為properties檔案中需要尋找到的資料的key值       }       });   }  

function loadProperties(){    jQuery.i18n.properties({// 載入properties檔案    name:'ISPindex', // properties檔案名稱    path:'i18n/', // properties檔案路徑    mode:'map', // 用 Map 的方式使用資源檔中的值    callback: function() {// 載入成功後設定顯示內容        alert($.i18n.prop(“isp_index”));//其中isp_index為properties檔案中需要尋找到的資料的key值    }    });}

其中properties檔案的路徑、名稱等需要根據實際情況作出調整。本例中properties檔案放在如下圖所在位置。


這樣運行該函數時,即可顯示需要的資料了。

如果本文說的不夠清楚,可以參考API文檔:www.ibm.com/developerworks/cn/web/1305_hezj_jqueryi18n/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.