如何向两个文本字段插入文本——小代码

How to insert text to both text fields - small code

我写了一个代码,所以我可以自动填充网页,问题是我希望它自动填充 2 个文本字段,但我的代码只填充第一个。 我的知识非常有限,所以我不知道如何用不同的短语自动填充第二个文本字段。

let question = document.querySelector('crowd-form tr');
if (question) {
  let text = question.textContent.trim();
  let input = question.querySelector('input');
  if (input) {
    // Does text contain "man united"?
    if (text.includes('man united')) input.value = 'Manchester United F.C.';
    // Does text contain "manchester united"?
    else if (text.includes('manchester united')) input.value = 'Manchester United F.C.';
  }
}
在上面的示例中,我可以插入球队名称“Manchester United F.C”。但我希望它能用“老特拉福德”填满另一个领域。 谁能帮帮我?

我创建了以下代码段。能否请您看一下并检查它是否符合您的要求。

// Instead of using querySelector() I directly added the text just for an example.
let text = 'man united is too shit for ronaldo';

// Reference of first textbox.
let firstInput = document.getElementById('firstTextbox');
// Reference of second textbox.
let secondInput = document.getElementById('secondTextbox');

// Assigning the value in firstTextbox based on the question text.
if (firstInput) {
  firstInput.value = text.includes('man united') ? 'Man United F.C.' : text.includes('manchester united') ? 'Manchester United F.C.' : '';
}

// Assigning the value in secondTextbox.
if (secondInput) {
  secondInput.value = 'Old Trafford';
}
<input id="firstTextbox" type="text"/>
<input id="secondTextbox" type="text"/>