我想做-6ren">
gpt4 book ai didi

javascript - 从表单内部获取 javascript 函数的返回值

转载 作者:行者123 更新时间:2023-12-03 10:03:32 25 4
gpt4 key购买 nike

我有这个表格

<form action="<?php echo $response ?>?nexturl=<?php echo $nexturl ?>"
method="post" enctype="multipart/form-data" onsubmit="return saveFile(); ">
<input id = "file" name="file" type="file" style="border:none;"/>

我想做这样的事情:

return $action = saveFile();

我想存储 saveFile() 的返回值,这是一个将 bool 值返回到 PHP 变量中的 JavaScript 代码。我怎样才能做到这一点?

最佳答案

保留隐藏输入字段中的值,然后提交表单:像这样:

function saveFile()
{
var val=true;
var input=document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name", "booleanValue");
input.setAttribute("value", val);
document.getElementById("form").appendChild(input);
}

要在 php 中检索此值:

$myBoolean=$_REQUEST['booleanValue'];

关于javascript - 从表单内部获取 javascript 函数的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30474032/

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