字符串中含有html标签的处理

//使用正则替换所有中文字符,然后再计算
 function getBLen(str) {
          if (str == null) return 0;
          if (typeof str != "string"){
            str += "";
          }
          return str.replace(/[^\x00-\xff]/g,"ab").length;
 }
document.getElementById("tijiao-button").removeAttribute("disabled");
钮变灰不可用方法:
document.getElementById("crop").setAttribute("disabled", true);

你可能感兴趣的:(html,前端)