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

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

我無法保存輸入(HTML 和 JS)

我無法保存輸入(HTML 和 JS)

qq_笑_17 2023-07-29 10:49:28
尊敬的朋友們,我是網(wǎng)絡(luò)開發(fā)的學(xué)生,并且是自學(xué)的。另外,我正在學(xué)習(xí) DOM 與 Javascript。我正在制作一個簡單的公式,目的是調(diào)整位置、更改顏色和管理 DOM 等。我想創(chuàng)建一些參與者,并將它們顯示在列表中。這是我的 HTML 代碼的一部分。<label>Nombre: </label><input id="addNombre" type="text"/><label>Color :</label><input id="addNombre" type="text"/><button onclick="AddCompetidor()">A?ade Participante</button>我已經(jīng)完成并重做了許多JS功能,這是我完成的最后一個。function AddCompetidor(){    var nombre = document.getElementById("addNombre");    var color = document.getElementById("addColor");    alert (nombre,color);}我嘗試了其他函數(shù),如何創(chuàng)建數(shù)組,但我不知道這是否是處理它的最佳方法。
查看完整描述

4 回答

?
犯罪嫌疑人X

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

這是帶有評論的綜合解決方案。


const form = document.getElementById("form");

const list = document.getElementById("list");


// let's handle the form submit event

form.addEventListener("submit", (e) => {

  // this will prevent the form from doing network request

  e.preventDefault();


  // lets get input elements from form by their ids

  const { nombre, color } = e.target.elements;


  // lets add new elements in the list

  const li = document.createElement("li");

  li.innerHTML = `${nombre.value} — ${color.value}`;

  list.appendChild(li);


  // lets clear the form

  nombre.value = "";

  color.value = "";

});

      <form id="form">

        <label>Nombre: </label>

        <input id="nombre" type="text" />

        <label>Color :</label>

        <input id="color" type="text" />

        <button>A?ade Participante</button>

      </form>

      <ul id="list"></ul>


查看完整回答
反對 回復(fù) 2023-07-29
?
侃侃無極

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

你必須獲得元素的正確ID:


<label>Nombre: </label>

<input id="nombre" type="text"/>

<label>Color :</label>

<input id="color" type="text"/>

<button onclick="AddCompetidor()">A?ade Participante</button>


<script type="text/javascript">

    function AddCompetidor(){

        var nombre = document.getElementById("nombre").value;

        var color = document.getElementById("color").value;

        alert (nombre + color);

    }

</script>


查看完整回答
反對 回復(fù) 2023-07-29
?
ibeautiful

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

如果要創(chuàng)建 HTML 輸入值數(shù)組,請使用:

var array = [nombre.value, color.value]

方括號定義一個新數(shù)組,獲取value參數(shù)即可獲取標(biāo)簽內(nèi)的內(nèi)容<input>。


查看完整回答
反對 回復(fù) 2023-07-29
?
一只甜甜圈

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

你可以定義一個類

班級球員{

constructor( nombre , color){ 
         this.nombre = nombre; 
         this.color = color;

并創(chuàng)建盡可能多的對象并將每個對象添加到數(shù)組中,如下所示

var obj = 新玩家(nombarvalue, colorvalue);

var 列表 = [];

列表.push(obj);

然后迭代這個對象數(shù)組來打印一個列表


查看完整回答
反對 回復(fù) 2023-07-29
  • 4 回答
  • 0 關(guān)注
  • 228 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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