gpt4 book ai didi

javascript - CSS 和 PHP 运行 exec 并返回原始页面

转载 作者:行者123 更新时间:2023-11-28 03:15:59 24 4
gpt4 key购买 nike

有点像网络编码的新手,我正在尝试实现一些简单的事情:显示一个带有大按钮图像的页面,单击时,它将在我的 Raspberry Pi 上执行一个简单的命令行。 exec 完成后,我想返回同一页面准备再次按下按钮。

所以,我正在使用以下内容:

<?php

if(isset($_GET['trigger']) && $_GET['trigger'] == 1)
{
error_reporting(E_ALL);
exec('<something>');
usleep(1000000);
exec('<something>');
header("Location: push.php");
exit;
}

?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<a href='push.php?trigger=1' class="btn"></a>
</div>

</body>
</html>

这有效,但是,在 exec 完成后,浏览器不会重定向回原始页面,或者它会重定向,但 url 是:

http://10.0.0.1/push.php?trigger=1

其中有 GET 参数。因此,在我点击浏览器上的后退按钮或刷新按钮之前,我无法再次点击该按钮。

有什么想法...?

最佳答案

一个更优雅的解决方案可能是使用 ajax,我看到您已经有了 jquery,所以您可以在这段代码中包含一个脚本

var button = $('.btn')
$(document).on('click', '.btn', function(){
button.css('display', 'none');
$.get('push.php?trigger=1', function(){
button.css('display', 'block');
});
});

这将在不关心响应的情况下调用该站点并将执行您的脚本,我建议使用 <button></button>标记而不是 <a></a>避免重定向

如果您想进一步改进您的代码,我会将脚本与 html 分开,并可能使用 POST 而不是 GET 调用它

关于javascript - CSS 和 PHP 运行 exec 并返回原始页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27805903/

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