0

在我的项目中,我遇到了从类中调用 javascript 代码的问题,该类在 wicket 中呈现
html。假设我们有一个类 ExamplePanel,其中包含以下用于 wicket 面板的代码

 public final class ExamplePanel extends Panel {

      public ExamplePanel(String id) {
          super(id);
          add(new Label("someText", "hello"));
      }}

和 html 文件'ExamplePanel'

 <html xmlns:wicket>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <title>ExamplePanel</title>
        <wicket:head>
            <link href="panel.css" rel="stylesheet"/>
            <script src="jquery.min.js"></script>
            <script src="jquery-ui.min.js"></script>

        </wicket:head>
    </head>
    <body>
        <wicket:panel>
            <div id="parentContainer">
                <div id="box" wicket:id="someText"></div>
            </div>
        </wicket:panel>
    </body>
</html>

并遵循 css

    #box{
    background: #f0f0f0;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 200px;
    left: 200px;
    font-size: 1.5em;
    word-wrap: break-word; 
}

#parentContainer{
    width:500px;
    height: 500px;
     background:RGB(57,51,51);
     position:relative;
}

从这段代码中,我们在 parentContainer div 中有框,我需要在初始化 ExamplePanel 类时将位置坐标传递给框,例如:

public ExamplePanel(String id) {
    super(id);
    add(new Label("someText", "hello"));
    // add some code for css positioning of box div
    // $('#div').css({position:'relative',top:'5px',left='29px'}) for example
}

有什么建议么?

4

2 回答 2

7

ExamplePanel必须实现提供方法renderHead(IHeaderResponse)的 IHeaderContributor 。通过此方法,您可以调用 response.renderString() 并将您想要应用的样式传递给它。在您的情况下,您没有添加样式,而是添加了添加一些样式的 JS 调用。这样做会使 java 调用更简单一些,因为不需要创建作为渲染字符串的一部分,您只需要调用 response.renderJavascript()...

public class ExamplePanel implements IHeaderContributor {
    public ExamplePanel(String id) {
        super(id);

        add(new Label("someText", "hello"));
    }

    @Override
    public void renderHead(IHeaderResponse response) {
        // use this if you want to add only the styles
        response.renderString("<style>#div {position:'relative'; top:'5px'; left='29px';}</style>");

        // or, use this if you still want the JS selector
        // the uniqueId should not be null if you want Wicket to check if the script has already been rendered
        response.renderJavascript("$('#div').css({position:'relative',top:'5px',left='29px'})", null);
    }
}

IHeaderContributor 接口旨在促进添加资源,例如 JavaScript 和 CSS。

于 2012-07-20T19:32:14.473 回答
1

您可以使用SimpleAttributeModifierAttributeAppender从检票口中设置 css 值或类。可以在此处找到有关如何执行此操作的说明。

于 2012-07-23T07:30:05.167 回答