导航:首页 > 编程语言 > js好看的confirm

js好看的confirm

发布时间:2021-03-29 08:14:10

js的confirm怎么修改提示文字

confirm("你吃饭了吗?");
如果你是想改下面的确定和取消按钮,是不可以的,自带的。

② 用js(最好jQuery) 重写confirm方法【js高手请进】

$.confirm = function(msg,func1,func2,w,h) { Confirm(msg,func1,func2,w,h); };

function Confirm(msg,func1,func2,w,h){
var opts = {css:{width:w?w:300,height:h?h:120}};
//这里还可以判断msg的长度进行排版,并调整弹出框的大小
install(window.top, opts);
$.DialogData.dialogDiv.find("div[id^='_DialogButtons_']").css('text-align','center')

var win = topWin.$.DialogData.iframeObj.attr('contentWindow');
var doc = win.document;
doc.open();
doc.write("<body></body>") ;
var arr = [];
arr.push("<div><table height='100%' border='0' align='center' cellpadding='10' cellspacing='0'>");
arr.push("<tr><td align='center'><img id='Icon' src='../images/icon_query.gif' width='34' height='34' align='absmiddle'></td>");
arr.push("<td align='left' id='Message' style='font-size:9pt'>"+msg+"</td></tr></table></div>");
var div = $(arr.join(''),doc.body);
$(doc.body).append(div);
doc.close();

//设置响应函数
//如果传递响应函数则执行,否则仅关闭窗口
$.DialogData.dialogDiv.find("input[id^='_ButtonOK_']").bind("click", function() {
$.unfunkyUI();
if(func1){
func1();
}
})
$.DialogData.dialogDiv.find("input[id^='_ButtonCancel_']").bind("click", function() {
if(func2){
func2();
}
}) ;
}

})(jQuery);

③ js 中confirm的用法

confirm() 方法用于显示一个带有指定消息和OK 及取消按钮的对话框。

如果用户点击确定按钮,则confirm() 返回true。如果点击取消按钮,则confirm() 返回false。

在用户点击确定按钮或取消按钮把对话框关闭之前,它将阻止用户对浏览器的所有输入。在调用confirm() 时,将暂停对javaScript 代码的执行,在用户作出响应之前,不会执行下一条语句。

下面我们通过这两个小例子,来了解一下它的使用方法吧:

<html>
<head>
<title>confrim的使用方法</title>
<scripttype="text/javascript">
functionclear1()
{
if(confirm("确定要清空数据吗?"))
{
document.main.text1.value="";
}
}
</script>
</head>
<boty>
<formname="main">
<inputtype="text"name="text1"/>
<inputtype="button"name="submit"value="数据清空"onclick="returnclear1()"/>
</form>
</body>
</html>

④ javascript 的confirm

可以写是可以的。
刚刚试了下没有问题。楼主你看你的
grid.PerformCallback('b');是不是有问题。建议你加上alert()看一下结果,如下
if(window.confirm('改变状态,改为审核请按“确认”,改为“反审”请按取消'))
{
alert(1);//有执行的话,会跳出1
grid.PerformCallback(‘’a);
}
else
{
alert(2);//有进来的话会跳出2,如果还是不执行的话就是你的方法问题。。如果连2都不出来的话,你点开左下角的警告号,看提示什么错误(用IE才有)
grid.PerformCallback('ZTFS');
}

⑤ javascript confirm用法

用法一:主要用于删除单条信息确认。

<SCRIPT LANGUAGE=javascript>

function del() {

var msg = "您真的确定要删除吗? 请确认!";

if (confirm(msg)==true){

return true;

}else{

return false;

}

}

</SCRIPT>

调用方法:

<a href="del.php?id=123" onclick="javascript:return del()">删 除</a>

用法二:原理跟用法一的一样。JavaScript删除确认框 。

<a href="javascript:if(confirm('确实要删除吗?'))location='jb51.php?id='">删除</a>

用法三:主要用于批量删除的确认提示 。

<input name="Submit" type="submit" class="inputedit" value="删除"

onclick="{if(confirm('确定纪录吗?')){

this.document.formname.submit();

return true;}return false;

}">

<input name="按钮" type="button" ID="ok" onclick="{if(confirm('确定删除吗?')){

window.location='Action.asp?Action=Del&

TableName=Item&

ID=<%=ID%>';

return true;

}return false;}"

value="删除栏目" />

(5)js好看的confirm扩展阅读:

confirm参数message:

1、confirm()函数中的参数是确认框的提示语。

2、此函数返回值是布尔型的,点击确定,返回值为true,点击取消返回值为false。

3、confirm快速调用:

<a<a target

="_blank" href

="/item/href/7779531" data-lemmaid

="7779531">href</a>

="#"onclick

="returnconfirm('是否打开链接');"><inputtype

="button"value

="链接"/></a>

注:点击链接后,在弹出对话方块中,如果点击“确定”那么就进入超链接所连接的地址;如果点击“取消”不执行链接。

⑥ 一个关于JS confirm 确认框的问题

二者其实是差不多的,上面的if(!confirm(txt))实际相当于
var r=confirm("本页中存在错误。\n\n"+"点击内“确定”容继续查看本页,\n"+"点击“取消”返回首页。\n\n");
if (r==false)

!是取反,也就是表示当confirm点的是取消的时候,if就会判定为成立。

⑦ js confirm函数

<script >
function yesno() {
if(confirm("是否将此留言信息删除?")){
return true;
}else return false;
}
</script>
<a href="del.asp" onclick="return yesno()">删除留言</a>

实际上,用下面的方法更简单。
<a href="del.asp" onclick="return confirm('是否将此留言信息删除?')">删除留言</a>

⑧ 用js+div帮我做一个类似confirm的提示框

<HTML>
<HEAD>
<TITLE>仿windows关机对话框的提示框效果 </TITLE>
</HEAD>

<BODY>
<form action="#">
<input name=btn1 type=button value=有自定义按钮 onclick=showalert1();>
<input name=btn2 type=button value=无自定义按钮 onclick=showalert2();>

</form>
<script language="javascript">
<!--
function gourl(e){
switch(e){
case 1:
window.alert("点击了确定按钮.");
break;
case 2:
break;
case 3:
window.alert("点击了其它按钮.");
break;
default:
break;
}
}

function showalert1(){
var Br = new innerMessageBox();
Br.ShowModal("带第三个按钮的示例", "您确定要删除该项吗?", 320, 120, "gourl($)", "重试");
}

function showalert2(){
var Br = new innerMessageBox();
Br.ShowModal("默认两个按钮的示例", "您确定要删除该项吗?", 320, 120, "gourl($)");
}
//-->
</script>
<script>
<!--
function innerMessageBox(){
var BackObject, FormObject;

// 检查页面中是否存在该控件.
function checkIMBObject(){
if (document.getElementById("imb_Background")==null){
document.body.innerHTML += "<iframe id=\"imb_Background\" src=\"about:blank\" style=\"position:absolute;left:0;top:0;width:0px;height:0px;visibility:hidden;\" frameborder=\"0\"></iframe>";
window.imb_Background.document.open();
window.imb_Background.document.write("<html><body bgcolor=red>sdfasdfasdf</body></html>");
window.imb_Background.document.close();
}
if (document.getElementById("imb_FormModal")==null){
document.body.innerHTML += "<iframe id=\"imb_FormModal\" src=\"about:blank\" style=\"position:absolute;left:0;top:0;width:0px;height:0px;visibility:hidden;border-bottom:2px solid #999999;border-right:2px solid #999999;border-top:1px solid #F8F6C1;border-left:1px solid #F8F6C1;\" frameborder=\"0\"></iframe>";
window.imb_FormModal.document.open();
window.imb_FormModal.document.write("<html><head><style><!--");
window.imb_FormModal.document.write("td{font-size:12px;");
window.imb_FormModal.document.write("//--></style></head><body scroll=no leftmargin=0 topmargin=0>");
window.imb_FormModal.document.write("<table width=100% height=100% bgcolor=\"#eeeeee\"><tr><td align=left bgcolor=#3A80F3><div id=\"imb_Title\" style=\"padding-left:3px;padding-right:3px;color:white;font-family:verdana;\">");
window.imb_FormModal.document.write("</div></td></tr><tr><td align=left><div id=\"imb_Content\" style=\"padding:7px;\">");
window.imb_FormModal.document.write("</div></td></tr><tr><td id=\"imb_Body\" align=center>");
window.imb_FormModal.document.write("</td></tr></table>");
window.imb_FormModal.document.write("</body></html>");
window.imb_FormModal.document.close();
}
}

// 显示对话框控件.
this.ShowModal = function(iCaption, iMessage, iWidth, iHeight, iClickFunc, iOther){
var smWidth = 420, smHeight = 180, smCaption = "默认对话框", smMessage="您确定执行这项操作吗?", smFunc, smObject, smAlpha, smInterval;
if (arguments.length > 4 ){
smWidth = iWidth;
smHeight = iHeight;
smCaption = iCaption;
smMessage = iMessage;
smFunc = iClickFunc;
}
// 背景的渐显.
function checkIMBAlpha(){
smObject.style.filter = "alpha(opacity="+smAlpha+");";
smAlpha += 10;
if (smAlpha>80){
clearInterval(smInterval);
}
}
checkIMBObject();
this.BackObject = document.getElementById("imb_Background");
this.FormObject = document.getElementById("imb_FormModal");
smObject = this.BackObject;
smAlpha = 0;
this.BackObject.style.left = 0;
this.BackObject.style.top = 0;
this.BackObject.style.width = document.body.scrollWidth;
this.BackObject.style.height = document.body.scrollHeight;
this.BackObject.style.visibility = "visible";
smInterval = window.setInterval(checkIMBAlpha, 5);

this.FormObject.style.left = document.body.clientWidth/2 - smWidth/2;
this.FormObject.style.top = document.body.clientHeight/2 - smHeight/2;
this.FormObject.style.width = smWidth;
this.FormObject.style.height = smHeight;
this.FormObject.style.visibility = "visible";
window.imb_FormModal.document.getElementById("imb_Title").innerHTML = "<b>" + smCaption + "</b>" + " -- 操作提示";
window.imb_FormModal.document.getElementById("imb_Content").innerHTML = smMessage;
if (iOther==null || iOther==""){
window.imb_FormModal.document.getElementById("imb_Body").innerHTML = "<input type=hidden id=imb_Other name=imb_Other shortKey=\"O\"> <input type=submit id=imb_Ok name=imb_Ok value=\"确定\" shortKey=\"T\"> <input type=button id=imb_Cancel name=imb_Cancel value=\"取消\" shortKey=\"C\">";
}else{
window.imb_FormModal.document.getElementById("imb_Body").innerHTML = "<input type=button id=imb_Other name=imb_Other value="+iOther+" shortKey=\"O\"> <input type=submit id=imb_Ok name=imb_Ok value=\"确定\" shortKey=\"T\"> <input type=button id=imb_Cancel name=imb_Cancel value=\"取消\" shortKey=\"C\">";
}
document.body.disabled = true;
window.imb_FormModal.document.getElementById("imb_Ok").onclick= function(){
parent.document.body.disabled = false;
if (smFunc!=null && smFunc!=""){
eval("parent." + smFunc.replace("$","1"));
}
parent.document.getElementById("imb_Background").style.visibility = "hidden";
parent.document.getElementById("imb_FormModal").style.visibility = "hidden";
}
window.imb_FormModal.document.getElementById("imb_Cancel").onclick= function(){
if (smFunc!=null && smFunc!=""){
eval("parent." + smFunc.replace("$","2"));
}
parent.document.body.disabled = false;
parent.document.getElementById("imb_Background").style.visibility = "hidden";
parent.document.getElementById("imb_FormModal").style.visibility = "hidden";
}
window.imb_FormModal.document.getElementById("imb_Other").onclick= function(){
if (smFunc!=null && smFunc!=""){
eval("parent." + smFunc.replace("$","3"));
}
parent.document.body.disabled = false;
parent.document.getElementById("imb_Background").style.visibility = "hidden";
parent.document.getElementById("imb_FormModal").style.visibility = "hidden";
}
}
}
//-->
</script>
</BODY>
</HTML>

阅读全文

与js好看的confirm相关的资料

热点内容
比特币数据库下载 浏览:624
如何在记事本里编程序 浏览:556
开心消消乐装哪个文件夹 浏览:986
58帮帮安装安装提示系统文件损坏 浏览:653
vs2012显示所有文件 浏览:953
怎么显示word里的文件数量 浏览:444
断点管理在哪个程序文件下面 浏览:408
奇迹单机哪个文件记录游戏账号 浏览:332
地磅数据删除后在哪里找到 浏览:560
qq临时文件夹 浏览:356
手机音乐裁剪合并软件安卓版 浏览:123
90ss重甲升级后的属性 浏览:315
哪个app支持佳明数据导入 浏览:529
支持外接u盘的文件浏览器 浏览:599
用word怎么设置背景 浏览:309
网站上有会员会怎么样 浏览:482
win10dosboxdebug 浏览:65
打开智慧人社显示配置文件不正确 浏览:107
数控编程u3是什么意思 浏览:336
linux压缩命令zip 浏览:326

友情链接