XSD元素类型不会以匹配的结束标记终止

时间:2018-04-10 22:48:51

标签: xml xsd xsd-validation xml-validation

我收到XSD代码的错误消息 - “元素类型”元素“必须由匹配的end-tag /element”终止。这显示在线/所有..这只发生在一个元素类型,而不是我不理解的其他元素

$(document).scroll(function() {
  if ($('.userInfo').offset().top + $('.userInfo').height() >= $('footer').offset().top - 10)
    $('.userInfo').css({
      'position': 'absolute',
      'bottom': 0,
      'top': 'auto'
    });

  if ($(document).scrollTop() + $('.userInfo').height() < $('footer').offset().top)
    $('.userInfo').css({
      'position': 'fixed',
      'top': 0,
      'bottom': 'auto'
    }); // restore when you scroll up
});

1 个答案:

答案 0 :(得分:2)

更改

<element name = "product" type = "string"> 

<element name = "product" type = "string"/>
                                         ^

消除错误。

关闭all时报告错误的原因是,在此之前,仍然可以关闭未关闭的element,以便XML可以格式正确。然而,一旦all关闭,很明显,良好的形成是不可能的。