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

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

如何在react js中獲取具有相同屬性名稱的數(shù)組中輸入標(biāo)簽的值

如何在react js中獲取具有相同屬性名稱的數(shù)組中輸入標(biāo)簽的值

叮當(dāng)貓咪 2023-12-11 10:46:03
我想獲取 education[0] 中第一個輸入標(biāo)簽的值和 education[1] education 中第二個輸入標(biāo)簽的值是數(shù)組。<input  type="text" name="education" value={this.state.education[0]} onChange={this.handleChange}  class="form-control"  /><input type="text"  name="education" value={this.state.education[1]} onChange={ this.handleChange()} class="form-control"/>
查看完整描述

2 回答

?
GCT1015

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

最好按如下方式執(zhí)行(它允許您動態(tài)創(chuàng)建輸入,如果您不需要動態(tài)輸入,也可以使用相同的技術(shù))


constructor(props) {

    super(props);

    this.state = {

      education: ["", ""] // I've added 2 items to create 2 inputs

    };

    this.handleChange = this.handleChange.bind(this);

  }


handleChange(e) {

    const education = [...this.state.education];

    education[e.target.id] = e.target.value;

    this.setState({

      education: education

    });

  }


render() {

    return (

      <div>

        {

          this.state.education.map((item, index) => (

          <input

            id={index}

            type="text"

            name="education"

            value={this.state.education[index]}

            onChange={this.handleChange}

            class="form-control"

          />

        ))

        }

      </div>

    );

}


查看完整回答
反對 回復(fù) 2023-12-11
?
慕姐4208626

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

在你的第二個輸入中,你(我認(rèn)為是錯誤的)()在你的this.handleChange函數(shù)之后添加了。這意味著該函數(shù)將立即被調(diào)用,而不會被調(diào)用 onChange。



查看完整回答
反對 回復(fù) 2023-12-11
  • 2 回答
  • 0 關(guān)注
  • 160 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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