gpt4 book ai didi

javascript - 当我使用 split 方法时出现错误 Uncaught ReferenceError : function is not defined

转载 作者:行者123 更新时间:2023-12-03 05:14:23 30 4
gpt4 key购买 nike

使用 split 方法,我想中断 url,并且在从文件夹中选择文件后只需要输入字段中的图像名称。但它显示整个路径 c:\fackpath\xyz.png

<html>
<head>
<script type="text/javascript">
function alertFilename()
{
var thefile = document.getElementById('thefile').value;
var x = thefile.toString()
var y = x.split("\")[0];

var y = document.getElementById('x').value = thefile;



}
</script>
</head>
<body>
<form>
<input type="file" style ="width:90px" id="thefile" onchange="alertFilename()" />
<input type="text" id ="x" value="" />
<p id ="demo"></p>
</form>
</body>

这是我的随员plunker link

最佳答案

我认为你只需要写两个反斜杠来右分割,因为反斜杠是一个特殊的字符。

var y = x.split("\\")[0];

关于javascript - 当我使用 split 方法时出现错误 Uncaught ReferenceError : function is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41665806/

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