本文主要是介绍在js中居然是可以使用c标签的,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
如题,对于菜鸟级别的我来说,这个发现不可谓不大,下面代码中附带了我对springmvc的list的接收的使用
d = new dTree('d');
d.add(0,-1,'知识库','','title','mainFrame');
<c:forEach var="s" items="${resultList}">
<c:choose>
<c:when test="${s.imgaddress==''}">
d.add("${s.dcid}","${s.dcfid}","${s.title}");
</c:when>
<c:when test="${s.imgaddress==null}">
d.add("${s.dcid}","${s.dcfid}","${s.title}");
</c:when>
<c:otherwise>
d.add("${s.dcid}","${s.dcfid}","${s.title}","javascript: οnclick= openwin(${s.dcid})",'title','');
</c:otherwise>
</c:choose>
</c:forEach>
document.write(d);
这篇关于在js中居然是可以使用c标签的的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!