在JavaScript中将div添加到Struts2动作响应中

时间:2012-06-10 17:26:35

标签: javascript struts2 yui

我正在使用YUI和Struts2来显示交互式应用程序。触发 onchange 事件后,我需要更新div。这是我正在使用的代码:

<div id="...">
    <s:form id="..." action="...">
        <s:select id="proyecto_actual_select" .../>
    </s:form>
    <sx:bind sources="proyecto_actual_select" formId="cambiar_proyecto_actual_form" targets="pantalla_principal" events="onchange" afterNotifyTopics="cambioProyecto"/>
</div>

执行操作后,将执行此脚本:

YUI({combine: false, filter: 'raw'}).use('bezier-wire', 'container','image-container',function(Y) {

    window.Y = Y;
    var layerEl = Y.one('#pantalla_principal');

    ...Some changes on layerEl...
};

当Struts2呈现div * pantalla_principal *时,显示div而脚本中没有对他执行任何更改。我应该怎么做才能让div与layerE1完全一样?

0 个答案:

没有答案