How to get VALUE from FORM without Submitting it?

后端 未结 5 1159
隐瞒了意图╮
隐瞒了意图╮ 2020-12-01 23:06

I would like to get value from Form without submitting it, because the client have to choose the right type of house model to get the right form that fits the selected house

5条回答
  •  醉梦人生
    2020-12-01 23:37

    You have to use ajax for achiving this.For example

    $("#house_model").live("change", function () { //Write the ajax and post the value to server side });

提交回复
热议问题