gpt4 book ai didi

javascript - 在 XUL JavaScript 中使用 10 秒自动关闭提示框

转载 作者:行者123 更新时间:2023-11-30 18:39:47 26 4
gpt4 key购买 nike

这是我在 XUL 中的提示框功能:函数提示框()

{
var prompts = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);

var check = {value: false}; // default the checkbox to false

var flags = prompts.BUTTON_POS_0 * prompts.BUTTON_TITLE_Ok+
prompts.BUTTON_POS_1 * prompts.BUTTON_TITLE_IS_STRING;

var button = prompts.confirmEx(null, "Title of this Dialog", "What do you want to do?",
flags, "", "Cancel", "", null, check);
// 0, 1, or 2.

}

我从这个网站上获取了上述功能: https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIPromptService#alertCheck_example

如何在 10 秒内自动关闭此框(显示消息:此提示框将在 1O 秒后关闭并在框本身显示计时器)?

如何定位此框以显示在系统的 Angular 落?

我在 Mozilla 提示服务中找不到任何计时器详细信息

最佳答案

我认为内置提示无法做到这一点,但您可以使用自定义提示窗口轻松做到这一点。

1) 创建一个 XUL 对话框 alert_prompt.xul 如下:

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<dialog id="alertprompt" title="Alert"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="accept,cancel"
buttonlabelcancel="Cancel"
buttonlabelaccept="Save"
height="140"
width="250"
ondialogaccept="return alert_prompt.doOK();"
ondialogcancel="return alert_prompt.doCancel();">

<script type="application/javascript" src="chrome://hello/content/alert_prompt.js"/>

<dialogheader title="Timer Alert Prompt"/>
<label id="result" value="This prompt will close in 10 seconds." align="center"/>
</dialog>

2) 为此 XUL 窗口创建一个 Javascript 文件 alert_prompt.js

var alert_prompt = {
init : function()
{
alert_prompt.timedCount(0);
},
timedCount : function(c)
{
//update the prompt message
document.getElementById('result').value="This prompt will close in "+ (10 - c) + " seconds.";
//if 10 seconds are over close the window
if(c == 10)
{
window.close();
}
//update the counter
c=c+1;
//use the timer
t=setTimeout(

function()
{
alert_prompt.timedCount(c);
},1000)
},
doOK : function()
{
//code that you want to run when save button is pressed
return true;
},

doCancel : function()
{
//code that you want to run when cancel button is pressed
return true;
},
};
window.addEventListener("load", alert_prompt.init, false);

3) 不要像之前那样显示警报提示,而是使用以下语句:

openDialog("chrome://hello/content/alert_prompt.xul","alert_prompt","modal");

如果您想从警告框中返回一个值,例如按下了哪个按钮,您可以按照讨论的相同方式进行操作 HERE

我不确定模态窗口的位置,因此您可能想在一个单独的问题中提问。

关于javascript - 在 XUL JavaScript 中使用 10 秒自动关闭提示框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7196269/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com