怎样用js清除file type里的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样用js清除file type里的内容相关的知识,希望对你有一定的参考价值。

<script>
function check()
。。。。。。(省略其它内容)
alert("。。。");

在这之后要清空picture 刚浏览的路径 变回原来空的框子


</script>

表单:
<input name="picture" type="file" onchange="check()">

这个怎么做?就是利用js把这里面的内容清空~~~哪位高手指点一下~~~谢谢啦!

参考技术A <html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题 3</title>
</head>

<body>
<form name="form1" id="form1">
<input type="file" name="file1" size="35" value="12341"/><br>
<input type="file" name="file1" size="35" value="12341"/><br>
<input type="file" name="file1" size="35" value="12341"/><br>
<input name="btn" onclick="clear1()" type="button" value="点击我"/>
</form>
<script language="javascript" type="text/javascript">
function clear1()

var obj = document.getElementById('form1').file1[1];
obj.outerHTML = obj.outerHTML;
document.getElementById('form1').file1[1].value="";


</script>
</body>

</html>
//主要理解clear方法中的内容就可以了
参考技术B <script>
function check()
alert("。。。");

document.f1.reset();//清除


</script>

表单:
<form name="f1">
<input name="picture" type="file" onchange="check()">
</form>本回答被提问者采纳
参考技术C <!--STATUS OK-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>怎样用js清除file type里的内容_百度知道 </title>
<link rel="alternate" type="application/rss+xml" title="“怎样用js清除file type里的内容”的最新回答(RSS 2.0)" href="http://zhidao.baidu.com/q?ct=20&qid=114198190&pn=65535&rn=25&tn=rssqb">
<script>
function check(o)

o.value=""; //在这之后要清空picture 刚浏览的路径 变回原来空的框子


</script>
</head>
<body>

<input name="picture" type="file" onchange="check(this)">
</body>
</html>
参考技术D 朋友希望你能明白。
<script>
function check()
alert("。。。");

document.f1.reset();//清除


</script>

表单:
<form name="f1">
<input name="picture" type="file" onchange="check()">
</form>

以上是关于怎样用js清除file type里的内容的主要内容,如果未能解决你的问题,请参考以下文章

用JS怎样获取文本框的值

怎样使用jquery里的cookie

Matlab中怎样用clf清除所有的图形?

怎样使用js或jquery复制li里的文字?

怎样用js替换网页里的指定字符串?

Python怎样获取XPath下的A标签的内容