有人可以逐步帮助我吗,我不能在逐步向导中使用select2,有人知道在哪里插入select2代码。
$(".select2wizard").select2();
我没有在github中找到任何东西,它是一个经过验证的向导,但它甚至无法识别select2
我试图将select2开始,但是它不起作用,但是据我了解,我需要在这里进行选择,我只是不知道在哪里。
var form = $(".validation-wizard").show();
$(".validation-wizard").steps({
headerTag: "h6"
, bodyTag: "section"
, transitionEffect: "fade"
, titleTemplate: '<span class="step">#index#</span> #title#'
, labels: {
finish: "Submit"
}
, onStepChanging: function (event, currentIndex, newIndex) {
////
}
, onFinishing: function (event, currentIndex) {
///
}
, onFinished: function (event, currentIndex) {
swal("Form Submitted!", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed lorem erat eleifend ex semper, lobortis purus sed.");
}
}), $(".validation-wizard").validate({
ignore: "input[type=hidden]"
, errorClass: "text-danger"
, successClass: "text-success"
, highlight: function (element, errorClass) {
$(element).removeClass(errorClass)
}
, unhighlight: function (element, errorClass) {
$(element).removeClass(errorClass)
}
, errorPlacement: function (error, element) {
error.insertAfter(element)
}
, rules: {
email: {
email: !0
}
}
})
答案 0 :(得分:0)
我认为您必须在源代码的以下部分中进行更改:
onStepChanging:函数(事件,currentIndex,newIndex){
$(“。select2wizard”)。select2();
}