在表单内使用jQuery步骤选择不工作(Chosen not working inside the

2019-10-24 09:48发布

选择(chosen.jquery.js)不形式内工作,施加的jquery步骤之后。 如果代码运行时使用jQuery的步骤形式外,它完美的罚款。 我也有同样的问题datePicker jQuery的步骤中。 我怎样才能解决这个问题呢?

Answer 1:

首先,您需要初始化jQuery的步骤,然后其他的插件初始化http://jsfiddle.net/6YkZV/50/

$(function () {
//step1
 $("#wizard").steps({
    bodyTag: "fieldset",
    headerTag: "h4"
  });
//step2
 $(".datepicker").datepicker();
});


文章来源: Chosen not working inside the form using jquery-steps