無重新整理上傳檔案

來源:互聯網
上載者:User

標籤:無重新整理上傳檔案

用js給出一個上傳檔案時不用重新整理頁面的方案


 <input id="upload" type="file"/> <button id="upload-btn">upload</button>


    document.getElementById(‘upload-btn‘).onclick = function(){          var oInput = document.getElementById(‘upload‘);          var file = oInput.files[0];       //選取檔案        var formData = new FormData();   //建立表單資料對象        formData.append(‘file‘,file);    //將檔案添加到表單對象中        fetch({                          //傳輸            url:‘./‘,            mothod:‘POST‘,            body:formData         })         .then((d)=>{        console.log(‘result is‘,d);        alert("上傳完畢!")        })    }


實現這麼一個效果:


使用HTML+CSS實現布局,border-width:5px,格子大小是50px*50px,hover時,邊框變成紅色,需要考慮語義化。

650) this.width=650;" src="https://uploadfiles.nowcoder.com/images/20170728/826546_1501229843213_D08DA487E4BE8F2E89257E85D2DDD1EE" style="border:0px;vertical-align:middle;" />


        table{            border-collapse:collapse;   /* 為表格設定合并邊框模型 */            margin:50px;            text-align:center;  /* 設定文字置中 */        }          table tr{            border:none;        }         table.tab td{            width:50px;            height:50px;            border:5px  inset blue;        }         table.tab td:hover{            border:5px solid red;            cursor: pointer;        }
        <table class="tab">        <tr>            <td>1</td>            <td>2</td>            <td>3</td>        </tr>        <tr>            <td>4</td>            <td>5</td>            <td>6</td>        </tr>        <tr>            <td>7</td>            <td>8</td>            <td>9</td>        </tr>    </table>




無重新整理上傳檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.