我收到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
});
答案 0 :(得分:2)
更改
<element name = "product" type = "string">
到
<element name = "product" type = "string"/>
^
消除错误。
关闭all
时报告错误的原因是,在此之前,仍然可以关闭未关闭的element
,以便XML可以格式正确。然而,一旦all
关闭,很明显,良好的形成是不可能的。