使用 php 调用厚盒警报
我正在使用厚盒来显示警报消息(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会。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.
执行与“通过单击链接”
ajax 调用相同的方式(需要 javascript):
Do it same way as you do it "from clicking a link"
ajax call (expects javascript):