switchLanguage.js 279 B

123456789
  1. window.onload = () => {
  2. var locHash = window.location.hash
  3. locHash = window.location.hash
  4. if (locHash.indexOf('language') === -1 || Number(locHash.substring(10)) === 1) {
  5. window.location.hash = 'language#1'
  6. // 1 代表 中文
  7. // 2 代表 英文
  8. };
  9. }