码迷,mamicode.com
首页 > 系统相关 > 详细

关于在eclipse中Undefined attribute name (role).解决办法

时间:2019-10-04 14:50:15      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:role   tab   支持   core   targe   data   eclips   title   属性   

方案一:

只需要在jsp表头添加一句:

1     <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

方案二:

参考博客:https://blog.csdn.net/bymyself11/article/details/51944151

在eclipse中编程报错:Undefined attribute name (role).说明没有role属性这是版本不支持问题

1 <span style="font-family:SimSun;">
2     <ul class="nav nav-tabs" id="ul1">
3         <li role="presentation"><a href="#">hello</a></li>
4         <li role="presentation"><a href="#">文件夹</a></li>
5         <li role="presentation"><a href="#">hhhhh</a></li>
6     </ul>
7 </span>

我们只需要把role属性编程data-role即可

1 <ul class="nav nav-tabs" id="ul1">
2     <li data-role="presentation"><a href="#">hello</a>
3     </li><li data-role="presentation"><a href="#">文件夹</a></li>
4     <li data-role="presentation"><a href="#">hhhhh</a></li>
5 </ul>

 

关于在eclipse中Undefined attribute name (role).解决办法

标签:role   tab   支持   core   targe   data   eclips   title   属性   

原文地址:https://www.cnblogs.com/smartisn/p/11621894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!