javascript erorr元素的内容必须由格式良好的字符数据或博客中的标记组成

时间:2017-12-16 16:27:09

标签: javascript html

我的问题是我想将此添加到头部内的博客,但我收到一个错误 那说 :

Erreur d'analyze XML,ligne 1060,colonne 20:元素的内容必须由格式良好的字符数据或标记组成。

/* When the user clicks on the button, 
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown menu if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {

var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
  var openDropdown = dropdowns[i];
  if (openDropdown.classList.contains('show')) {
    openDropdown.classList.remove('show');
  }
}
}
}

1 个答案:

答案 0 :(得分:0)

见这里:Error parsing XHTML: The content of elements must consist of well-formed character data or markup

你可能不会使用&lt;在内联脚本中,因为解析器认为它是标记的开头。