1、加上DIV彈出框
創(chuàng)新互聯(lián)建站是一家專注于做網(wǎng)站、網(wǎng)站建設(shè)與策劃設(shè)計(jì),密山網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:密山等地區(qū)。密山做網(wǎng)站價(jià)格咨詢:13518219792
function AddRunningDiv() {
$("div class=\"datagrid-mask\"/div").css({ display: "block", width: "100%", height: $(document).height() }).appendTo("body");
$("div class=\"datagrid-mask-msg\"/div").html("正在處理,請(qǐng)稍候...").appendTo("body").css({ display: "block", left: ($(document.body).outerWidth(true) - 190) / 2, top: ($(document).height() - 45) / 2 });
}
2、取消所彈出的DIV
function MoveRunningDiv() {
$("div[class='datagrid-mask']").remove();
$("div[class='datagrid-mask-msg']").remove();
}
使用jquery更改bootstrap彈出框的內(nèi)容,可以使用Jquery的load()方法,動(dòng)態(tài)加載不同的模態(tài)框(彈出框)內(nèi)容,然后填充到頁(yè)面的彈出框div中:
主頁(yè)面只保留彈出框最外面的那個(gè)div
1
div class="modal fade" id="myModal" /div
動(dòng)態(tài)加載的彈出框內(nèi)容頁(yè)面中包括bootstrap模態(tài)框中的head、body和footer部分
1
2
3
4
5
6
7
8
9
div class="modal-header"
h3模態(tài)框header /h3
/div
div class="modal-body"
p模態(tài)框body/p
/div
div class="modal-footer"
p模態(tài)框footer/p
/div
利用jquery的load()方法,在點(diǎn)擊不同的按鈕時(shí)動(dòng)態(tài)先動(dòng)態(tài)加載內(nèi)容到模態(tài)框的div中,然后再讓bootstrap顯示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
script
// 模態(tài)對(duì)話框隱藏時(shí)移除數(shù)據(jù)
$("#myModal").on("hidden", function() {
$(this).removeData("modal");
});
// 顯示模態(tài)對(duì)話框
var showModal = function() {
var remote = "/test/showModal";
if (remote != "") {
$("#myModal").load(remote, function() {
$("#myModal").modal('show');
});
}};
/script
其中showModal函數(shù)可以由按鈕控制。
1、你肯定會(huì)有一個(gè)按鈕點(diǎn)擊事件Onclick()之類的,點(diǎn)擊可以彈出dialog,還會(huì)有一個(gè)div加載需要dialog的需要的數(shù)據(jù)等。
2、$("#divId").dialog({
里面類似easyui的dialog;
})
3.點(diǎn)擊事件在js添加一個(gè)$("#divId").dialog("open");
即可,希望可以幫助到你,望采納!
有很多方法實(shí)現(xiàn)的,比如使用alert這種比較丑的彈框,比如
btn.click(function(){
window.alert('內(nèi)容')
});
或者是自己自定義的彈框,那這樣的話你至少得套三個(gè)div,比如
div-----這個(gè)絕對(duì)定位到整個(gè)頁(yè)面,如position:absolute;top:0;left:0;right:0;bottom:0;
div-----這個(gè)在父級(jí)元素上面做絕對(duì)定位,也就是彈框的位置
div/div----彈框內(nèi)容
/div
/div
或者是jQuery UI本身所附帶的對(duì)話框功能,那個(gè)百度就出來(lái)了,不過(guò)不建議用那個(gè),感覺(jué)比較丑,還是自己寫(xiě)一個(gè)好看
當(dāng)然你也可以試著引入其他的UI框架,比如boot都有對(duì)話框的功能,不過(guò)建議自己寫(xiě),用jQuery寫(xiě)也比較簡(jiǎn)單
可以用jDialog插件實(shí)現(xiàn),jDialog是一款基于jquery實(shí)現(xiàn)的輕量級(jí)多種類型的自定義對(duì)話框插件在項(xiàng)目開(kāi)發(fā)中、一般會(huì)美化 alert();
參考如下:
center
button id="test1"alert方式調(diào)用/button
br/br/
button id="test2"confirm方式調(diào)用/button
br/br/
button id="test3"iframe方式調(diào)用/button
br/br/
button id="test4"只顯示內(nèi)容對(duì)話框/button
br/br/
button id="test5"對(duì)話框配置按鈕/button
br/br/
button id="test6"message方式調(diào)用/button
br/br/
button id="test7"tip方式調(diào)用/button
/center
以下是JS代碼
$("#test1").click(function(){
var dialog = jDialog.alert(′歡迎使用jDialog組件′,{},{
showShadow: false,// 不顯示對(duì)話框陰影
buttonAlign : ′center′,
events : {
show : function(evt){
var dlg = evt.data.dialog;
},
close : function(evt){
var dlg = evt.data.dialog;
},
enterKey : function(evt){
alert(′enter key pressed!′);
},
escKey : function(evt){
alert(′esc key pressed!′);
evt.data.dialog.close();
}
}
});
}) ;
$("#test2").click(function(){
var dialog = jDialog.confirm(′歡迎使用jDialog組件,我是confirm!′,{
handler : function(button,dialog) {
alert(′你點(diǎn)擊了確定!′);
dialog.close();
}
},{
handler : function(button,dialog) {
alert(′你點(diǎn)擊了取消!′);
dialog.close();
}
});
});
$("#test3").click(function(){
// 通過(guò)options參數(shù),控制iframe對(duì)話框
var dialog = jDialog.iframe(;,{
title : ′
width : 1100,
height : 550
});
});
$("#test4").click(function(){
// 通過(guò)options參數(shù),控制dialog
var dialog = jDialog.dialog({
title : ′自定義對(duì)話框′,
content : ′
});
});
$("#test5").click(function(){
// 通過(guò)options參數(shù),控制dialog
var dialog = jDialog.dialog({
title : ′自定義對(duì)話框′,
content : ′;,
buttons : [
{
type : ′highlight′,
text : ′你好′,
handler:function(button,dialog)
{
dialog.close();
}
}
]
});
});
$("#test6").click(function(){
var dialog = jDialog.message(′′,{
autoClose : 3000, // 3s后自動(dòng)關(guān)閉
padding : ′30px′, // 設(shè)置內(nèi)部padding
modal: true // 非模態(tài),即不顯示遮罩層
});
});
$("#test7").click(function(){
var dialog = jDialog.tip(′′,{
target : $(′#test7′),
position : ′left-top′,
trianglePosFromStart :0,
autoClose : 1000,
offset : {
top :-20,
left:10,
right:0,
bottom:0
}
});
})