在Spring中启动Bootstrap切换开关

时间:2017-07-07 07:09:23

标签: javascript jquery html spring

单击切换开关后弹出单击确认后,我无法触发onclick事件。有人知道我错了吗?

查看

<td><a onclick="return confirmDelete(this, '<c:url value='active-user-${user.name}' />')"><input id="activeSwitch" data-toggle="toggle" data-on="Active" data-off="InActive" data-onstyle="danger" data-width="90" data-height="30" type="checkbox"></a></td>

脚本

 function confirmDelete(delForm, delUrl) {
                var stateValue = $("#tblClient #activeSwitch").is(":checked");

                if (confirm("Do you want to inActive this user?")) {
                            delForm.href = delUrl;          
                            elForm.submit();

                            return true; 
                        }

                        $('#tblClient #activeSwitch').bootstrapSwitch('toggleState', true, true);
                            return false;

                };

1 个答案:

答案 0 :(得分:0)

为什么要在HTML中返回该函数? 您不需要返回该功能。它是返回某些东西的功能。所以你只需要正常调用函数而不返回。