Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用此代码向控制器发送数据,但我想再传递一个参数,比如birthDate 如何使用以下语法传递它???
jQuery("#patient").jqGrid('setGridParam', {url : "totalPatientList.html?pid=" + $('#byId').val()});
请尽快帮助我....
这应该工作
jQuery("#patient").jqGrid('setGridParam', {url : "totalPatientList.html?pid=" + $('#byId').val() +"&birthDate="+$("#birthDateId").val() });
I am getting the titular error when I try to call the validate() function on my form. All the research I have done says "make sure you're calling it" however I am 95% sure I am a
validate()