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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在聲明組件之前將組件的 id 發(fā)送給函數(shù)?

如何在聲明組件之前將組件的 id 發(fā)送給函數(shù)?

慕容708150 2023-06-09 10:44:49
我正在嘗試發(fā)送一個條目的 document.getElementById,它是在我調(diào)用 javascript 函數(shù)并打印它的值的條目之后定義的,但是該函數(shù)提醒我在之后聲明的組件未定義,我該如何訪問它id 并打印它的值?代碼:<!DOCTYPE html><html><body><p>A function is triggered when the user releases a key in the input field. The function transforms the character to upper case.</p>Enter your name: <input type="text" id="fname" onkeyup="myFunction('fname', 'fname2')"><input type="text" id="fname2"><script>function myFunction(first, second) {    alert(second.value);  var x = document.getElementById(first);  x.value = x.value.toUpperCase();}</script></body></html>
查看完整描述

1 回答

?
GCT1015

TA貢獻1827條經(jīng)驗 獲得超4個贊

在您的代碼中,second是一個字符串,字符串沒有value屬性,因此給您未定義。


我想你的意思是這樣的:


function myFunction(first, second) {

  alert(document.getElementById(second).value);

  ...

}


查看完整回答
反對 回復 2023-06-09
  • 1 回答
  • 0 關注
  • 122 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

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