答案 0 :(得分:1)
你的iframe和页面在同一个域上是很好的,这意味着你可以在javascript中的父/子之间来回调用。
我建议在您的父(customer.jsp)中设置一个javascript函数
function drawBox() {
//handle drawing the box here however that has to happen
}
在menuBanner.jsp中更新按钮以触发“parent.drawBox()”
onclick="parent.drawBox()"
以下是此工作的示例: http://mathforum.org/~amir/share/stack/outer.html