本文介绍了如何在Jquery选择器中使用JSTL var的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用以下Jquery选择器
I am using following Jquery selector
$("#selectedQuery td input:radio").attr('checked', true);
selectedQuery
是声明为
<c:set var="selectedQuery" value="${dataRequestForm.queryMasterId}" />
我用硬编码值测试了选择器,它可以正常工作,但与selectedQuery
一起使用时运气不佳.
我们如何在Jquery中使用JSTL <c:set>
var?有什么解决方法吗?
I tested the selector with hard coded values and it's working fine but no luck when used with selectedQuery
.
How can we use JSTL <c:set>
var in Jquery ? Is there any work around ?
推荐答案
在JSP中:
<c:set var="selectedQuery" value="${dataRequestForm.queryMasterId}" />
<script>
$("#${selectedQuery} td input:radio").attr('checked', true);
</script>
这篇关于如何在Jquery选择器中使用JSTL var的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!