在线表单,发送命令而不会丢失页面

时间:2017-05-05 12:14:51

标签: javascript html

我正在使用下面的模板创建一个简单的网络表单,使用Particle Photon IoT板控制我家中的灯光。

我希望该表单只接受一个按钮,但不会向前移动到另一个页面,它目前正在执行,从设备上给我一个响应。

我想在页面上打印设备的响应,但不要离开控件,我确定必须有基本的HTML或更复杂的Javascript答案,我只是不知道它。

你能提供帮助吗?

谢谢!

**更新:感谢您指出其他帖子。但是我无法控制服务器的响应(它不是我的服务器)所以你找到的解决方案并没有真正的帮助...除非它确实如此,我只是不明白如何。

/* Paste the code between the dashes below into a .txt file and save it as an .html file. Replace your-device-ID-goes-here with your actual device ID and your-access-token-goes-here with your actual access token.

---------------------------
<!-- Replace your-device-ID-goes-here with your actual device ID
and replace your-access-token-goes-here with your actual access token-->
<!DOCTYPE>
<html>
  <body>
  <center>
  <br>
  <br>
  <br>
  <form action="https://api.particle.io/v1/devices/987654321/led?access_token=123456789" method="POST">
    Tell your device what to do!<br>
    <br>
    <input type="radio" name="args" value="1">Turn the LED to 1.
    <br>
    <input type="radio" name="args" value="2">Turn the LED to 2.
    <br>
    <input type="radio" name="args" value="3">Turn the LED to 3.
    <br>
    <input type="radio" name="args" value="4">Turn the LED to 4.
    <br><br>
    <input type="submit" value="Do it!">
  </form>
  </center>
  </body>
</html>
---------------------------
*/

0 个答案:

没有答案