标签: alert

未找到站点时禁用警报框 Gecko Fx VB

我四处搜寻,似乎找不到与此相关的任何内容。基本上我制作了一个使用 gecko 网络浏览器的无窗口应用程序。问题是,如果我尝试浏览到一个不存在的网站。示例:www.gets.commmss,它会向我显示一个警告框,表示www.gets.commmss could not be found. Please check the name and try again.我不希望显示此内容,因为我自己使用navigated&NavigationError处理程序处理这些错误。问题是,我似乎无法禁用这个烦人的警报框!任何想法都非常感激。

我使用的geckofx版本是:GeckoFX v33.0.9.0

我正在使用 Visual Studio 2012,它是一个 Windows 窗体应用程序。

截屏:在此输入图像描述

这必须通过应用程序来完成,因为我不认为这是 javascript 的事情?

vb.net alert geckofx

2
推荐指数
1
解决办法
1341
查看次数

React Material UI 延迟权限对话框

我是 React 和 Material UI 的新手。我想做的是创建一个简单的权限对话框(就像我们通常在手机上看到的要求隐私或位置权限的对话框,或者像桌面上的 Chrome 一样)),该对话框会在加载主页后几秒钟出现。这样用户首先看到主页,然后大约 2 秒后出现权限对话框(如灯箱)。

我已经检查了Material Ui 文档中的警报对话框示例,这很棒。我所困惑的是如何:

  1. 在一定延迟(假设 2 秒)显示对话框
  2. 仅显示一次。这意味着您第一次进入主页时会显示它,仅此而已。浏览其他网站的页面就不会再显示它。(类似于 chrome 行为)

我希望能够做这样的事情:

AlertDialog代码由 Material UI 提供)

export default function Home() {
  return (
    <Container maxWidth="sm">
      <Box component="img" src="/logo.svg" pt="58px" />
      <Typography component="div" gutterBottom>
        Home page
      </Typography>
      <AlertDialog wait="2000" />
    </Container>
  );
}
Run Code Online (Sandbox Code Playgroud)

alert dialog reactjs material-ui react-hooks

2
推荐指数
1
解决办法
2156
查看次数

如何使用 BigQuery 发出“提醒”

我在 BigQuery 项目中遇到问题。

因此,我希望alerting在 BigQuery 中基于数据和我想要设置的阈值。由于数据每 15 分钟不断增加,我希望 BigQuery 首先使用保存的查询自动分析数据集,并通知我是否存在违反阈值的情况。

我已经尝试过监控功能,但指标就像添加的行、字节等,它们不相关,因为我主要关心的是数据本身。

例如,对于“ID”和“结果”列,我将“结果”列上的阈值设置为数据“5”。如果数据超过“5”,我想知道哪个“ID”上升了。

alert monitoring google-bigquery

2
推荐指数
1
解决办法
5069
查看次数

为什么这个 Javascript 函数不显示alert()?

我有一个功能,可以在两个元素未填写时显示警报,但警报没有显示,只是重新加载页面。不确定我错过了什么或者哪里出错了。这是 JavaScript:

function submitNewsletter() {
    var name = document.getElementById("name");
    var email = document.getElementById("email");
    if (name == "" || email == "") {
        alert("Please fill in your details.");
        return false;
    }
}

Run Code Online (Sandbox Code Playgroud)

这是它的 html:

<section class="signup">
        <h1>Keep up to date.</h1>
        <p>Sign up to our newsletter to hear about improvements and additions to Electric Dreams.</p>
        <form class="newsletterForm">
            <label for="name" class="label">Full Name</label>
            <input type="text" id="name" name="name" class="input" placeholder="Full Name"> <br>
            <label for="email" class="label">Email Address</label>
            <input type="email" id="email" name="email" class="inout" placeholder="Email Address"> <br>
            <button …
Run Code Online (Sandbox Code Playgroud)

html javascript alert function onclick

2
推荐指数
1
解决办法
125
查看次数

添加多个确认图(UIAlertView)

基本上,我尝试做的是添加多个确认页...但我不能让它工作.无论我按什么确认,"继续"按钮都会导致完全相同的事情(没有文字的主体和带有"XXXX"的主题)...任何想法如何让confimationalerts导致不同的东西?

编辑2; 无论我按什么按钮(继续或解除),应用程序都会将用户发送到mail.app ...

        -(IBAction)mail {

                    UIAlertView *mail = [[UIAlertView alloc] init];
                        [mail setTag:ALERTVIEW_MAIL_TAG];
                        [mail setTitle:@"Open mail"];
                        [mail setMessage:@"....."];
                        [mail setDelegate:self];
                        [mail addButtonWithTitle:@"Continue"];
                        [mail addButtonWithTitle:@"Dismiss"];
                        [mail show];
                        [mail release];

                    }

                    -(IBAction)feedback {
                        UIAlertView *feedback = [[UIAlertView alloc] init];
                        [feedback setTag:ALERTVIEW_TIPSA_TAG];
                        [feedback setTitle:@"Open mail"];
                        [feedback setMessage:@"....."];
                        [feedback setDelegate:self];
                        [feedback addButtonWithTitle:@"Continue"];
                        [feedback addButtonWithTitle:@"dismiss"];
                        [feedback show];
                        [feedback release];
                    }

- (void)showConfirmAlert
                    {   
                    }   

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
                   if([alertView tag] == ALERTVIEW_FEEDBACK_TAG) {
                        NSURL *url = [[NSURL alloc] initWithString:@"mailto:?subject=XXXX"];
                        [[UIApplication sharedApplication] openURL:url];
                        [url …
Run Code Online (Sandbox Code Playgroud)

iphone alert confirmation uialertview ios4

1
推荐指数
1
解决办法
2101
查看次数

无法在javascript中获取字符串长度

超过1小时.这是我的index.php文件中的javascript代码.

function dostuff()
{

   var thepath = document.location.search.substring(1);
   alert('the path is ' + thepath + " (that's the full path)");
   alert(thepath);

       // TRIED THESE ALL -- NONE OF THEM WORK.
   //var pathLen = String.length("thepath");
   //var pathLen = String.length(thepath);
   //var pathLen = thepath.length();
   var pathLen = String.length(document.location.search.substring(1));
   alert('pathLen is ' + pathLen);
}
Run Code Online (Sandbox Code Playgroud)

症状:前2个警告框出现没问题,两个都显示'thepath'中有一个有效的路径名,它也是正确的预期路径.

但无论我尝试什么 - 看到4个不同的尝试,一次尝试一个 - 最终警报()框永远不会出现.为什么警报('pathLen是'+ pathLen)没有出现?

(另一件事是 - 我正在使用XDEBUG和xampp以及Netbeans,调试器不会让我在这个javascript代码中放置一个断点,所以我甚至无法进入它看看发生了什么,因此使用了代码中的alert().我知道我在Netbeans中使用的XDEBUG调试器工作 - 我一直在使用它来调试另一个.PHP文件中的PHP代码.当我在任何设置断点时Javascript代码,出现"断开的断点"图标,我无法找到Netbeans文档中的含义.)

javascript string alert

1
推荐指数
1
解决办法
8862
查看次数

如何回应一个'在PHP中

我试图在PHP中回应一个javascript警告消息,但我有问题,在PHP的's'中包含警报的's'.

代码看起来像这样>>

onclick="return confirm('Are you sure you want to delete this customer ?')"
Run Code Online (Sandbox Code Playgroud)

如果我使用

echo onclick="return confirm('Are you sure you want to delete this customer ?')"
Run Code Online (Sandbox Code Playgroud)

如果我使用的话,因为额外的's,我在Dreamweaver中遇到错误

echo'onclick ="return confirm("你确定要删除这个客户吗?")"';

我不再在php中出错,但它仍然不起作用,并且生成的html给了我一个重复的属性消息,因为它输出后会产生额外的"".

javascript php alert echo

1
推荐指数
1
解决办法
3325
查看次数

jquery中的复选框验证

我需要在表单上的选择复选框中提供帮助.我想显示警告,因为表单复选框未选中(仅限).我的代码:

<form action="index.php?page=contact&amp;send=ok" method="POST" id="form">
[...]
<label for="message">Checkbox:</label><input type="checkbox" id="checkbox" name="checkbox">           
<input type="submit" value="Send" onclick="testcheck()" />
</form>

<script type="text/javascript">
function testcheck()
{
    if (jQuery("#checkbox").prop("checked"))
        alert("first button checked");
    else
        alert("none checked");
}
</script>
Run Code Online (Sandbox Code Playgroud)

validation checkbox jquery alert attr

1
推荐指数
2
解决办法
5万
查看次数

http wcf错误"无法找到与绑定MetadataExchangeHttpsBinding的端点的方案https匹配的基址..."

我尝试从sharpoint调用我的自定义svc文件时收到此错误.我在这里发布了我的web.config文件,你们可以告诉我这个错误吗?

我试图在sharepoint中拥有我的自定义web服务,所以我创建了一个项目,但是由于这个错误,我无法浏览我的web方法.

<?xml version="1.0"?>
<configuration>
  <system.serviceModel>
    <services>
      <service behaviorConfiguration="AlertWcfService.CustomServiceBehaviour"
        name="AlertWcfService.AlertService">
        <endpoint address="http://localhost:2000/" binding="basicHttpBinding" bindingConfiguration="basicHttpBindingConfiguration"
                  contract="AlertWcfService.IAlertService" >
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:2000/"></add>
          </baseAddresses>
        </host>
      </service>
    </services>
    <bindings>
      <basicHttpBinding>
        <binding name="basicHttpBindingConfiguration">
          <security mode="Transport">
            <transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
            <message clientCredentialType="Certificate" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="AlertWcfService.CustomServiceBehaviour">
          <!--<serviceMetadata httpsGetEnabled="false"/>-->
          <serviceMetadata httpGetEnabled="false" httpsGetEnabled="false"/>
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>
Run Code Online (Sandbox Code Playgroud)

wcf binding alert endpoint svc

1
推荐指数
1
解决办法
7510
查看次数

如何将输入内容放入alert()框?

我有一个问题要输入警报框。我必须做些什么来创建这个?为此,我必须放置另一个标签,属性,特殊属性等...谢谢。我认为可能是这样的:

<!DOCTYPE html>
<html>
<head>
	<title>example</title>
</head>
<body>
	<script type="text/javascript">
		alert("<input></input>");
	</script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

html javascript alert input

1
推荐指数
2
解决办法
7803
查看次数