在我的项目中,我遇到了在 wicket 类中获取 css 属性值的问题,假设我们有一些面板
public final class ExamplePanel extends Panel {
public ExamplePanel(String id) {
super(id);
add(new Label("someText", "hello"));
}}
这个文件的 html 文件是
<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="container" wicket:id="hello">
</div>
</wicket:panel>
</body>
和下面的CSS
#parentContainer{
width:500px;
height: 500px;
background:RGB(57,51,51);
position:relative;
}
我需要获取 css 代码的值,例如
public final class ExamplePanel extends Panel {
public ExamplePanel(String id) {
super(id);
Label label = new Label("someText", "hello");
add(label);
// draft code
//String height = label.getCssValue("height");
// String position = label.getcssvalue("position");
}}
或者从这个div获取css值的任何其他解决方案?