作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在模式中使用 bootstrap-multiselect。我使用模态工具 Bootstrap 箱( http://bootboxjs.com/documentation.html )来执行此操作,但无法让它工作;因为多选需要初始化。但是当我在box中使用它时,我无论如何都找不到在box中编写js
。
我该怎么做?
JS
$("#hello2").on("click", function () {
var id = 0;
bootbox.dialog({
message: '<div>ghostcard:<input type="text" name="first_name" id="ghostCard"/> </div><br> <div>water card:<input type="text" name="first_name" id="waterCard"/></div> ' +
' <select class="multiselect dropup" multiple="multiple" id="multiObject"> <option value="cheese">Cheese</option></select>',
title: "<small>hello</small>",
buttons:{
success:{
label:"confirm",
className:"btn-success",
callback:function () {
id = 2;
alert("id is " + id+$("#ghostCard").val()+$("#waterCard").val());
}
},
danger:{
label:"cancel",
className:"btn-danger",
callback:function () {
alert("id is " + id);
id = 3;
}
}
}
});
});
最佳答案
希望这会有所帮助,但我发现您可以将消息作为函数调用,以便您可以在其中执行 init 等操作,并简单地返回消息结果。因此,消息不是作为字符串调用,而是作为函数;消息:函数(){//创建/初始化下拉菜单返回您想要作为消息的任何文本。}
我发现这对于在实际对话框主体中绑定(bind) json 编辑器等功能非常有帮助。
祝一切顺利,干杯
关于javascript - 我如何在 Bootstrap 箱中使用多选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20440156/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!