将文件上传的文件名传递到文本字段
我有一个表单的一部分,用户可以在其中上传文件。我只想将文件名以相同的形式发送到文本字段。因此,如果用户上传“C:/Folder/image.jpg”,则文本字段应显示“image.jpg”。我自己尝试了一些代码,但我知道这是错误的:
function ff_uploadimages_action(element, action)
{var m = data.match(/((*):\/)/(.*)[\/\\]([^\/\\]+\.\w+)$/);
switch (action) {
case 'change':
if (data.match(/((*):\/)/(.*)[\/\\]([^\/\\]+\.\w+)$/).value)
ff_getElementByName('filename').value = m[2].text;
default:;
} // switch
} // ff_uploadimages_action
ff_uploadimages是上传文件的字段,文件名是名称应该出现的文本字段。如有任何帮助,我们将不胜感激!谢谢。
I have a part of a form where a user can upload a file. I want only the filename to be sent to a text field in the same form. So if user uploaded "C:/Folder/image.jpg", the text field should show "image.jpg". I tried some code myself but I know it's wrong:
function ff_uploadimages_action(element, action)
{var m = data.match(/((*):\/)/(.*)[\/\\]([^\/\\]+\.\w+)$/);
switch (action) {
case 'change':
if (data.match(/((*):\/)/(.*)[\/\\]([^\/\\]+\.\w+)$/).value)
ff_getElementByName('filename').value = m[2].text;
default:;
} // switch
} // ff_uploadimages_action
ff_uploadimages is the field to upload file, and filename is the textfield where name should appear. Any help at all is appreciated! Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一种方法
你没有提到 jQuery,但鉴于它的流行,这里有使用 jQuery 的相同解决方案
jQuery:
演示:
http:// /jsfiddle.net/pxfunc/WWNnV/4/
Here's one way to do it
you don't mention jQuery but given it's popularity here's the same solution using jQuery
jQuery:
Demo:
http://jsfiddle.net/pxfunc/WWNnV/4/
HTML:
JS:
HTML:
JS:
jQuery 中的一种较短方法如下:
HTML
jQuery
在此示例中,默认文件上传被隐藏,以便您可以根据需要设置“上传文件输入”的样式。单击该按钮将触发原始(隐藏)文件上传。选择文件后,
.onchange()
将完成其余工作,将文件复制为“只读输入文本”。A shorter way in jQuery would be the following:
HTML
jQuery
In this example the default file upload is hidden so that you can style the 'upload file input' as desired. Clicking the button will trigger the original (hidden) file upload. After choosing the file the
.onchange()
will do the rest of the work, copying the file the 'read only input text'.