0

I am using the jQuery UI Accordion to develop a "wizard" form. I have four panels. Each panel contains a part of the form. The form starts before the div with acccordion instance.

The problem: If i click on the 'Submit' button, the form doesn't submit, as if the button has "return false;", but i didn't add that. If i hide the jQuery UI Accordion, the submit button works properly.

Does jQuery UI Accordion disable submit buttons? How can I solve this problem?

HTML on Pastebin

Javascript:

// Accordion in Tags area
$("#accordionTag").accordion();
4

1 回答 1

0

尝试将您的值处理到另一个表单中的隐藏字段,然后在提交按钮上单击运行提交该隐藏值表单的函数。希望它会起作用

于 2012-05-22T18:59:56.133 回答