0
I'm using struts 2 application where 
< s: form name="myForm">
< s:include value = "test.jsp" >< / s:include>
< img src="../../images/next.png" onclick="fnNext();"/>
< / s:form>

test.jsp contains a table with id = "my table"

现在如何在 javascript 函数 fnNext() 中使用表的 id:

4

2 回答 2

0

您可以使用element = document.getElementById(id)或使用 Jquery 来选择它$('#your_id')

于 2012-05-17T09:53:32.110 回答
-1

如果您查看结果的来源JSP,您可以看到该include标记test.jsp在您的原件中包含 a 的输出JSP

因此,您可以像任何其他 DOM 元素一样在 js 文件中简单地获取表格:

table = document.getElementById(idOfYourTable);

希望这可以帮助!

于 2012-05-17T10:00:47.113 回答