如何使用确认提醒框创建struts jquery链接?

问题描述:

我想创建<sj:a></sj:a>链接,点击后会显示第一个确认对话框。我试过<sj:dialog>,但它不起作用。 你能帮我吗?如何使用确认提醒框创建struts jquery链接?

sj:a 
    id="ajaxlink" 
    href="%{'#'}" 
    indicator="indicator" 
    onClickTopics="before" 
    button="true" 
    > 
     click me 
    </sj:a> 


$.subscribe('before', function(event,data) { 
    //do your condition check here 
    if(condition){ 
     window.location="yourLocation"; 
    } 
});