easysoft / zui

ZUI is an HTML5 front UI framework.
https://openzui.com
MIT License
2.71k stars 690 forks source link

使用 thymeleaf 模板引擎解析标签页报错 #82

Closed toypipi closed 7 years ago

toypipi commented 7 years ago

screenshot-1

如图,将 html 页面改为 thymeleaf 模板引擎时,报错 Attribute name "data-tab"associated with an element type "a" must be followed by the ' = ' character. 我猜测是 <a data-tab href="#tabToday"> 这种用法不符合 xml 标准。但不知道如何解决,请大佬解答,谢谢您!

toypipi commented 7 years ago

自己找到了解决办法,只需要换成 bootstrap 标签页用法,即将 <a data-tab href="#tabToday"> 换成 <a href="#tabToday" data-toggle="tab">就可以了。