• 上传图片时JS自动显示图片


    Code
    <HTML>
    <META http-equiv=Content-Type content="text/html; charset=utf-8">
    <HEAD>
    <TITLE> Test Page </TITLE>

    </HEAD>

    <BODY>
    <script>
    function preview(imgFile,num)
    {
        
    //预览代码,支持 IE6、IE7。
        var newPreview = document.getElementById("preview1");
      
        
    var t ;
        
    if(document.all) //IE
        t = imgFile.value;
        
    else
        t 
    = imgFile.files[0].getAsDataURL(); //FF
        newPreview.style.backgroundImage = "url(" + t + ")";//imgFile.value;
        newPreview.style.width = "108px";
        newPreview.style.height 
    = "130px";
        newPreview.style.display 
    = "block";
    }

    </script>
    <input type="file" onchange='ShowImg(this)' />

    <div id="preview1" style="border:1px solid #FFCC00; 108px; height:130px;display:block" >

    </div>
    <script>function ShowImg(o)
    {  
    //var Browser_Agent=navigator.userAgent;
    //
    if(Browser_Agent.indexOf("Firefox")!=-1)
    //
    {
    //
    火狐使用
      //  document.getElementById("idImg").src=o.files[0].getAsDataURL();
      //  document.getElementById("idImg").style.display = "block";
      // }
    //
    else
    //
    {
          preview(o,1);
        
    //}
    </script>


    </BODY>
    </HTML>

    aliyun活动 https://www.aliyun.com/acts/limit-buy?userCode=re2o7acl
  • 相关阅读:
    SAP SD 模块面试题
    商品ATP check FM(获得可用库存和总库存)
    获得SO的凭证流
    SAP XI 常用事务代码
    ABAP 面试问题及答案(一)(转)
    ABAP 面试题(转)
    SAP XI 3.0考试大纲
    Enterprise System Applicaiton 试题
    Enterprise Portal 试题
    ABAP 100 道面试题
  • 原文地址:https://www.cnblogs.com/wangbin/p/1505663.html
Copyright © 2020-2023  润新知