styles.js
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. function loadText()
  2.     {
  3.     var txtLang = document.getElementsByName("txtLang");
  4.     txtLang[0].innerHTML = "Format";
  5.     txtLang[1].innerHTML = "Fu00F6rhandsgranska";
  6.     txtLang[2].innerHTML = "Applicera pu00E5";
  7.     var optLang = document.getElementsByName("optLang");
  8.     optLang[0].text = "Vald text"
  9.     optLang[1].text = "Aktuell tagg"
  10.     
  11.     document.getElementById("btnCancel").value = "Avbryt";
  12.     document.getElementById("btnApply").value = "Verkstu00E4ll";
  13.     document.getElementById("btnOk").value = " OK ";
  14.     }
  15. function getText(s)
  16.     {
  17.     switch(s)
  18.         {
  19.         case "You're selecting BODY element.":
  20.             return "Du har valt BODY taggen.";
  21.         case "Please select a text.":
  22.             return "Vu00E4nligen vu00E4lj text.";
  23.         default:return "";
  24.         }
  25.     }
  26. function writeTitle()
  27.     {
  28.     document.write("<title>Formatmallar</title>")
  29.     }