我将如何在不使用 HTML 表单的情况下提交表单数据。
我只需要向 example.php 发送 1 个输入,并且希望远离 ajax/jQuery。
也可以在后台发送它而不重定向/刷新页面。
下面的代码是据我所知。我希望它
在页面加载到没有页面重定向的情况下发送input_1
并且它的值。value 1
example.php
theForm = document.createElement('form');
theForm.action = 'example.php';
theForm.method = 'post';
newInput1 = document.createElement('input');
newInput1.type = 'hidden';
newInput1.name = 'input_1';
newInput1.value = 'value 1';