example.js
上传用户:jhh8446530
上传日期:2016-01-28
资源大小:116k
文件大小:1k
源码类别:

Ajax

开发平台:

JavaScript

  1. // DOM ready!
  2. $(function(){
  3.   // Use i18n settins to show images instead text in menu links
  4.   
  5.   $.fn.EasyWidgets({
  6.     i18n : {
  7.       editText : '<img src="./edit.png" alt="Edit" width="16" height="16" />',
  8.       closeText : '<img src="./close.png" alt="Close" width="16" height="16" />',
  9.       collapseText : '<img src="./collapse.png" alt="Close" width="16" height="16" />',
  10.       cancelEditText : '<img src="./edit.png" alt="Edit" width="16" height="16" />',
  11.       extendText : '<img src="./extend.png" alt="Close" width="16" height="16" />'
  12.     }
  13.   });
  14.   
  15. });