0

从选择框中选择任何值后,我创建了一个选择框我正在调用具有选定值的 jquery 函数,我需要将此值传递给我的 Action 类,我不想使用选择标签因为我需要学习 jquery支柱2。

4

2 回答 2

0
  <script>
function callMe() {
    $.ajax({
        type : "POST",
        url : "test.action", //this action is fired
        data : {fname='rohit'} //you can pass variable 'fname' with value 'rohit'
                }).done(function(data) {

                   //Ajax response is recevied in "data"
                   //you can put other process on "data"            

                 } 


    });
}

于 2013-02-26T06:38:54.957 回答
0

我认为你需要这样的东西;只是一个例子:

window.open('http://localhost:8080/PMBM/userdataedit.action?' + sel_id + '&operation=Edit', '_self');

您可以.load()根据自己的方便使用方法。

于 2013-02-24T19:35:36.857 回答