使用 php 调用厚盒警报

发布于 2024-11-17 02:36:34 字数 238 浏览 2 评论 0原文

我正在使用厚盒来显示警报消息(http://jquery.com/demo/thickbox/)。但是,该网站仅解释了如何通过单击链接来调用警报。有没有办法通过 php 以某种方式调用该函数?
这是我的代码:

<?php
if ($input!=='submit'){

//put data in databaste
}
else {
//call thickbox alert
}
?>

I'm using thickbox to display alert messages (http://jquery.com/demo/thickbox/). However, the site explains only to call the alert from clicking a link. Is there a way to call the function through php somehow?
here's my code:

<?php
if ($input!=='submit'){

//put data in databaste
}
else {
//call thickbox alert
}
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南汐寒笙箫 2024-11-24 02:36:34

不会。jQuery/Javascript 在客户端(您的浏览器)执行,而 PHP 在服务器端执行。

也许如果您向 php 服务器端脚本发送 AJAX HTTP 请求并获取响应,然后根据该响应发出警报,您就可以执行您想要的操作。如果您想将 PHP 业务逻辑与 Javascript 一起应用,那么肯定需要客户端/服务器通信。

No. jQuery/Javascript is executed on the client side (your browser) while PHP is executed on the server side.

Maybe if you do an AJAX HTTP Request Post to a php serverside script and get back the response and then do the alert based on that response, you could do what you're wanting. There will definitely need to be client/server communication if you're wanting to apply your PHP business logic with your Javascript.

海风掠过北极光 2024-11-24 02:36:34

执行与“通过单击链接”

echo '<script>$.thickboxAlertFunction("yourtext");</script>';

ajax 调用相同的方式(需要 javascript):

$.getScript(
      'yourajax.php', 
      {post:params}, 
      function() {
           /*on success*/
      }
});

Do it same way as you do it "from clicking a link"

echo '<script>$.thickboxAlertFunction("yourtext");</script>';

ajax call (expects javascript):

$.getScript(
      'yourajax.php', 
      {post:params}, 
      function() {
           /*on success*/
      }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文