本文介绍了如何从Marquee标签下载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<marquee onmouseover="stop();" onmouseout="start();" scrollAmount="7" scrollDelay="100" direction="side" width="100%" height="16" style="margin-top: 0px">
text goes here <a>Testing File</a>
</marquee



>





我点击测试文件链接,相应的文件将被下载..请任何人帮助我.......


>


When i Click a Testing File Link,That Corresponding File will be Downloaded..Please any one help me.......

推荐答案

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;<br mode=" hold=" />charset=windows-1252">
<title>click file</title>
</meta></meta></head>

<body>
<marquee onmouseover="stop();" onmouseout="start();" scrollamount="7" scrolldelay="100" direction="side" width="100%" height="16" style="margin-top: 0px">
text goes here <a href="test.xls" download=""> aaaa</a>
</marquee>
</body>
</html>



这篇关于如何从Marquee标签下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 13:48