Jquery错误 - 调用struts动作时

时间:2013-06-12 17:18:56

标签: java jquery jsp struts2 struts-tags

我正在调用来自jquery的struts动作,如下面的代码。

jQuery( "#dialog-form" ).dialog({ 
    autoOpen: false,
    height: 300,
    width: 350,
    modal: true,
    buttons : {
        "Search" : function() {
            jQuery.ajax({
                type : 'POST',
                url : ' <s:submit action="part" method="find" /> '
             })
        }
    }
});

有没有办法从jquery调用struts动作?

1 个答案:

答案 0 :(得分:2)

使用

jQuery("#dialog-form").dialog({ 
  autoOpen: false,
  height: 300,
  width: 350,
  modal: true,
  buttons : {
    "Search" : function() {
      jQuery.ajax({type : 'POST',
        url : '<s:url action="part" method="find"/>'
      }); 
    } 
  }
});

submit代码不会呈现网址,而是使用url代码。