抱歉,不完全理解发生了什么,但会尝试解释,想在 jquery 中使用 post 发送文件名,但在通过数组时不能使用破折号或文件扩展名。
在 HTML 文件中使用 filename_ 传递值
<div id="filename_file-name.txt"></div>
在 PHP 文件中,试图获取数组中值为 file-name.txt 的部分
$thefilename_array = $_POST['filename'];
$key = 0;
$the_selected_filename_from_array = $thefilename_array[$key];
如果文件名的格式没有像 filename 而不是 file-name.txt 这样的破折号,这实际上是有效的
这就是我想要得到的
Array
(
[0] => file-name.txt
)
感谢您的帮助,如果不清楚我要做什么,将尝试解释更多。