可以通过以下步骤实现:
var form = document.getElementById("myForm");
var input = document.createElement("input");
input.type = "hidden";
input.name = "myVariable";
input.value = myValue;
form.appendChild(input);
完整的代码示例:
var form = document.getElementById("myForm");
var input = document.createElement("input");
input.type = "hidden";
input.name = "myVariable";
input.value = myValue;
form.appendChild(input);
这样,变量"myValue"就会以隐藏的方式被放入名为"myForm"的表单中。在表单提交时,该变量的值会被一同提交到服务器端进行处理。
注意:以上代码示例中的"myForm"、"myVariable"和myValue"仅为示例,实际应根据具体情况进行修改。
领取专属 10元无门槛券
手把手带您无忧上云