js中使用innerHTML中拼接程序,使用<c:if>标签的问题???
td8Obj.innerHTML="<selectname='deptno'><c:forEachvar='dept'items='${deptList}'><optio...
td8Obj.innerHTML="<select name='deptno'><c:forEach var='dept' items='${deptList}'><option value='${dept.DEPTNO }' <c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if> >${dept.DNAME }</option></c:forEach></select>"
其中 <c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if>
deptno和dept.DEPTNO是变量。为什么判断不成功?如何改,在线等!急急急急~~
deptno是从jsp页面传到js方法的参数,而且deptno在页面上是动态得到值 展开
其中 <c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if>
deptno和dept.DEPTNO是变量。为什么判断不成功?如何改,在线等!急急急急~~
deptno是从jsp页面传到js方法的参数,而且deptno在页面上是动态得到值 展开
3个回答
2013-04-26
展开全部
c:if是在界面生成的时候进行编译,那会哪来的js变量呢,最好改成用js来拼接
<c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if>
可以写成: deptno ==' ${dept.DEPTNO}'?'selected':'';
<c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if>
可以写成: deptno ==' ${dept.DEPTNO}'?'selected':'';
追问
selected是html,里面能用条件运算么
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询