我可以在我的页面中显示此值
<bean:write name="userProfileDomain" property="serviceRequestDomain.reqExpToDate" />
但我希望将此值存储在我的jsp页面中的某个变量中并对其进行一些验证。
var i = <bean:write name="userProfileDomain" property="serviceRequestDomain.reqExpToDate"/>;
上面的代码无法正常工作..有什么建议吗?
答案 0 :(得分:2)
要分配给Javascript变量,您可以执行以下操作:
var i = "${userProfileDomain.serviceRequestDomain.reqExpToDate}";