fngetThings(thingId)//getting thingId from the included jsp page
{
var test1 = thingId;//I need to set this test1 value to a in the same asp page
$("#test2").val(test1);
}
在同一个Jsp页面中。
If i use the below tags it is working fine
<s:textfield name="test2" id = "test2"></s:textfield>
or
<s:hidden name="test2" id = "test2"></s:hidden>
我无法在变量中设置test1值
<s:set var="testVar2" value="" id="test2"/>
我需要在某些测试条件下使用test1值。
我尝试在函数中编写$("#test2").attr("value",test1)
,但这也无效。
有人可以帮我解决这个问题吗
<s:set var="testVar2" value="" id="test2"/> //how to set value=test1 from script.
答案 0 :(得分:0)
你试过这个吗?
<s:set var="testVar2" id="test2"/>
然后打印
<s:property value="testVar2"/>