模仿QQ邮箱添加附件

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="div.aspx.cs" Inherits="div" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<HTML>     
<HEAD>     
<script>     
/**//*   
需要注意的几个地方:   
.由于input type=file控件不能对type属性赋值(in IE),所以采用插入HTML代码的方式(insertAdjacentHTML);   
.input type=file控件的value是只读的,不能被赋值;   
.因为用一个input type=file控件有缺陷,就是当用户删除了最后一次添加的文件再添加同样的文件则无法触发onchange事件;   
并且要上传文件,只用一个上传控件是不够的;   
.客户端无法获取文件大小,除非用FSO或ActiveX等。除了img控件,其fileSize可以在图片文件加载完成后获取其文件大小;   
.还有另外一种变通的方法就是用flash与js交互达到获取客户端文件大小的效果(现在flash在安全方面也做了限制);   
*/    
var i = 0;    // 用来动态生成span,upfile的id     
function addAttachmentToList()     
{     
    if (findAttachment(event.srcElement.value)) return;    //如果此文档已在附件列表中则不再添加     
         
    // 动态创建附件信息栏并添加到附件列表中     
    var span = document.createElement('span');     
    span.id = '_attachment' + i;     
    span.innerHTML = extractFileName(event.srcElement.value) + '&nbsp;<a href="javascript:delAttachment(' + (i++) + ')"><font color="blue">删除</font></a><br/>';     
    span.title = event.srcElement.value;     
    G('attachmentList').appendChild(span);     
         
    // 显示附件列表并变换添加附件按钮文本     
    if (G('attachmentList').style.display == 'none')     
    {     
        G('btnAdd').value = '继续添加';     
        G('attachmentList').style.display = '';     
        G('btnClear').style.display = '';     
    }     
    
    G('total').innerText = '当前选择上传'+ G('attachmentList').childNodes.length + '个附件';     
}     
    
function selectAttachment()     
{     
    // 先清除无效动态生成的多余upfile     
    cleanInvalidUpfile();     
         
    // 动态创建上传控件并与span对应     
    var upfile = '<input type="file" style="display:none" οnchange="addAttachmentToList();" id="_upfile'+i+'">';     
    document.body.insertAdjacentHTML('beforeEnd', upfile);     
    G('_upfile'+i).click();     
}     
    
function extractFileName(fn)     
{     
    return fn.substr(fn.lastIndexOf('\\')+1);     
}     
    
function findAttachment(fn)     
{     
    var o = G('attachmentList').getElementsByTagName('span');     
    for(var i=0;i<o.length;i++)     
        if (o[i].title == fn) return true;     
    return false;     
}     
    
function delAttachment(id)     
{     
    G('attachmentList').removeChild(G('_attachment'+id));     
    document.body.removeChild(G('_upfile'+id));     
         
    // 当附件列表为空则不显示并且变化添加附件按钮文本     
    if (G('attachmentList').childNodes.length == 0)     
    {     
        G('btnAdd').value = '添加附件';     
        G('attachmentList').style.display = 'none';     
        G('btnClear').style.display = 'none';     
    }     
         
    G('total').innerText = '当前选择上传'+ G('attachmentList').childNodes.length + '个附件';         
}     
    
function cleanInvalidUpfile()     
{     
    var o = document.body.getElementsByTagName('input');     
    for(var i=o.length-1;i>=0;i--)     
      if (o[i].type == 'file' && o[i].id.indexOf('_upfile') == 0)     
      {     
          if (!G('_attachment'+o[i].id.substr(7)))     
              document.body.removeChild(o[i]);     
      }     
}     
    
function clearAttachment()     
{     
    var o = G('attachmentList').childNodes;     
    for(var i=o.length-1;i>=0;i--)     
        G('attachmentList').removeChild(o[i]);     
    
    o = document.body.getElementsByTagName('input');     
    for(var i=o.length-1;i>=0;i--)     
      if (o[i].type == 'file' && o[i].id.indexOf('_upfile') == 0)     
      {     
          document.body.removeChild(o[i]);     
      }         
    
    G('btnAdd').value = '添加附件';     
    G('attachmentList').style.display = 'none';     
    G('btnClear').style.display = 'none';     
         
    G('total').innerText = '当前选择上传0个附件';         
           
}     
    
function getAttachmentInfo()     
{     
    // 已知的js获取本地文件大小的三种方式     
    // 1.通过FSO 2.通过ActiveX 3.通过Flash(设置可能更麻烦)与js交互     
    // 注:QQ邮箱中获取本地文件大小就是采用第二种方式     
}     
    
function G(id)     
{     
    return document.getElementById(id);     
}     
    
</script>     
</HEAD>     
<BODY>     
<fieldset style="border : 1px solid #84A24A;text-align:left;COLOR:#84A24A;FONT-SIZE:      
12px;font-family: Verdana;padding:5px;">     
<legend>模仿QQ邮箱添加附件</legend>     
<input style="background:transparent;border:1px solid #84A24A;color:#84A24A" type="button" value="添加附件" id="btnAdd" οnclick="selectAttachment();">&nbsp;<input type="button" value="清空附件" style="background:transparent;border:1px solid #84A24A;color:#84A24A" id="btnClear" style="display:none" οnclick="clearAttachment();">     
<div id="attachmentList" style="margin:3px 0px 0px 0px;padding:4px 3px 4px 3px;background-color:#DEEBC6;display:none;border:1px solid #84A24A;">     
</div>     
<div id="total" style="margin:3px 0px 0px 0px;">当前选择上传0个附件</div>     
</fieldset>     
</BODY>     
</HTML>

转载于:https://www.cnblogs.com/heartinsky/archive/2009/10/15/1584000.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值