第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用輸入類型圖像上傳前預(yù)覽圖像

使用輸入類型圖像上傳前預(yù)覽圖像

嚕嚕噠 2022-12-29 15:32:13
如果我使用img標(biāo)簽并在單擊簡(jiǎn)單按鈕后 - 圖像預(yù)覽工作:HTML<form runat="server">  <input type='file' id="imgInp" />  <img id="blah" src="#" alt="your image" /> <--- in this place img</form>JSfunction readURL(input) {  if (input.files && input.files[0]) {    var reader = new FileReader();        reader.onload = function(e) {      $('#blah').attr('src', e.target.result);    }        reader.readAsDataURL(input.files[0]); // convert to base64 string  }}$("#imgInp").change(function() {  readURL(this);});但是當(dāng)我試圖隱藏按鈕并使圖像可點(diǎn)擊(使用實(shí)現(xiàn)它input type="image")預(yù)覽不起作用時(shí),選擇圖像沒(méi)有效果,不更改默認(rèn)圖像)。默認(rèn)的可點(diǎn)擊圖片類似于“點(diǎn)擊此處上傳照片”。HTML<form runat="server">                   <div class="thumb-preview">        <input type="image" id="blah" src="<?=path?>/images/upload.png"/> <-- input type image        <input type='file' id="imgInp" style="display: none;" />    </div>                            </form>JSfunction readURL(input) {  if (input.files && input.files[0]) {    var reader = new FileReader();        reader.onload = function(e) {      $('#blah').attr('src', e.target.result);    }        reader.readAsDataURL(input.files[0]); // convert to base64 string  }}$("#imgInp").change(function() {  readURL(this);});$("input[type='image']").click(function() {    $("input[id='imgInp']").click();});你有想法如何改變形象input type="image"嗎?
查看完整描述

1 回答

?
慕勒3428872

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超6個(gè)贊

您需要在點(diǎn)擊功能中使用e.PreventDefault方法,以確保您每次點(diǎn)擊時(shí)click type=image都不是該頁(yè)面。!reloading

現(xiàn)場(chǎng)演示:


function readURL(input) {

  if (input.files && input.files[0]) {

    var reader = new FileReader();

    reader.onload = function(e) {

      $('#blah').attr('src', e.target.result);

    }

    reader.readAsDataURL(input.files[0]); // convert to base64 string

  }

}


$("#imgInp").change(function(e) {

  e.preventDefault()

  readURL(this);

});


$("input[type='image']").click(function(e) {

  e.preventDefault()

  $("input[id='imgInp']").click();

});

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<form runat="server">               

    <div class="thumb-preview">

        <input type="image" id="blah" src="https://img.icons8.com/dotty/80/000000/upload.png"/> 

        <input type='file' id="imgInp" style="display: none;" />

    </div>                            

</form>




查看完整回答
反對(duì) 回復(fù) 2022-12-29
  • 1 回答
  • 0 關(guān)注
  • 118 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)