首先,我想提一提,當談到js和wicket時,我是初學者。在wicket事件中獲取變量javascript
我試圖檢索在JavaScript的定義我的網頁上的變量。我想在頁面上觸發事件時檢索此變量。
我使用此代碼來獲取變量,但它不工作(這是我的小門面板Java類):
...
add(new AjaxEventBehavior("onclick") {
private static final long serialVersionUID = 1L;
protected void onEvent(AjaxRequestTarget target) {
if(target != null) {
String value = RequestCycle.get().getRequest().getParameter("i");
}
}
});
有人能指出我在正確的方向?
預先感謝您。