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

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

點(diǎn)擊事件在 IE 中不起作用,但在其他瀏覽器中工作正常

點(diǎn)擊事件在 IE 中不起作用,但在其他瀏覽器中工作正常

ibeautiful 2023-09-18 10:34:48
這是 html 代碼,我在其中添加了指向函數(shù)的單擊事件,并且該函數(shù)將提醒一些消息。<div class="horizontal-align" *ngFor="let taxId of selectedTaxIds">    <button class="btn btn-rounded" disabled *ngIf="taxId.Tin !== 'All'">         <span >Taxi ID: </span>         <span class="text-semibold pl-4"> {{ taxId.Tin }} </span>         <div class="close-btn" (click)="newfun()" >              <mat-icon class="icon-display"  svgIcon="close"></mat-icon>         </div>     </button></div>newfun(){alert('some message')}這在 chrome 中工作正常,但在 IE 中不行。我嘗試向標(biāo)簽聲明一個(gè) id,并使用工作正常的 document.getElementById 方法選擇 id。即使在檢查代碼時(shí),我也可以在 IE 開發(fā)人員工具事件選項(xiàng)卡中看到單擊事件。請幫我解決這個(gè)問題
查看完整描述

1 回答

?
jeck貓

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

請檢查HTML5 標(biāo)準(zhǔn)中的按鈕定義

內(nèi)容模型:表述內(nèi)容,但不得有交互式內(nèi)容后代。

根據(jù)您的代碼,您想要單擊按鈕元素內(nèi)的子元素,這在 IE 瀏覽器中不起作用。

我建議您修改代碼如下(將單擊事件添加到按鈕元素,而不是 div 標(biāo)簽):

<div class="horizontal-align" *ngFor="let taxId of selectedTaxIds">

? ? <button class="btn btn-rounded" disabled *ngIf="taxId.Tin !== 'All'" (click)="newfun()">

? ? ? ? ?<span >Taxi ID: </span>

? ? ? ? ?<span class="text-semibold pl-4"> {{ taxId.Tin }} </span>

? ? ? ? ?<div class="close-btn" >

? ? ? ? ? ? ? <mat-icon class="icon-display"? svgIcon="close"></mat-icon>

? ? ? ? ?</div>

? ? ?</button>

</div>

此外,您還可以將按鈕元素更改為 div 標(biāo)簽,如下所示:


<div class="horizontal-align" *ngFor="let taxId of selectedTaxIds">

? ? <div class="btn btn-rounded" disabled *ngIf="taxId.Tin !== 'All'">

? ? ? ? ?<span >Taxi ID: </span>

? ? ? ? ?<span class="text-semibold pl-4"> {{ taxId.Tin }} </span>

? ? ? ? ?<div class="close-btn" (click)="newfun()" >

? ? ? ? ? ? ? <mat-icon class="icon-display"? svgIcon="close"></mat-icon>

? ? ? ? ?</div>

? ? ?</div>

</div>


查看完整回答
反對 回復(fù) 2023-09-18
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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