window.addEventListener('load', function loadSettings(evt) {
  window.removeEventListener('load', loadSettings);  //为什么刚刚绑定了监听又要解除绑定,这样会不会影响后续函数的执行?
  window.addEventListener('change', Settings);
  window.addEventListener('click', Settings);
  Settings.init();
});