js----> var con = confirm('这是一个确定加取消的提示窗口')
if(con==true){
document.write("点击了确定按钮")
}else{
document.write("点击了取消按钮")
}
jquery--->$.confirm({
title:'系统提示',
message:‘确定要下载吗?’,
ok:function(){
document.write("正在下载中....")
}
})
js----> var con = confirm('这是一个确定加取消的提示窗口')
if(con==true){
document.write("点击了确定按钮")
}else{
document.write("点击了取消按钮")
}
jquery--->$.confirm({
title:'系统提示',
message:‘确定要下载吗?’,
ok:function(){
document.write("正在下载中....")
}
})