【问题标题】:Trying to display paragraph on HTML page from JavaScript尝试从 JavaScript 在 HTML 页面上显示段落
【发布时间】:2020-05-07 13:44:50
【问题描述】:

我的 JavaScript 有问题。我正在尝试向用户显示显示手机用户偏好的操作结果。当我在 Web 浏览器中测试此代码时,我在 JavaScript 控制台中看到一个没有错误的空白网页。我在这里做错了吗?下面显示的是我的代码。

// This is an array of the objects in the website, showing the phone information that will be used to filter for the user to view. 

const phones = [{
  name: "iPhone XS", brand: "Apple", cost: 43, data: "500MB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "iPhone 11", brand: "Apple", cost: 64, data: "90GB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "Galaxy S10", brand: "Samsung", cost: 30, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "Galaxy S10", brand: "Samsung", cost: 65, data: "Unlimited", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "Galaxy A10", brand: "Samsung", cost: 11.99, data: "500MB", minutes: 250, texts: "Unlimited"
},
{
  name: "Galaxy S9", brand: "Samsung", cost: 31, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "StarTAC 130", brand: "Motorola", cost: 3, data: "0MB", minutes: 200, texts: 500
},
{
  name: "Pixel 3A", brand: "Google", cost: 23, data: "4GB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "Xperia 10", brand: "Sony", cost: 30, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
},
{
  name: "P30", brand: "Huawei", cost: 27.99, data: "500MB", minutes: 500, texts: "Unlimited"
}]

// These are asking the user for entry of the data into the system.
const phoneBrand = prompt("Enter a phone brand")

const phoneCost = prompt("Enter a monthly cost")

const phoneData = prompt("Enter the amount of data")

const phoneMins = prompt("How many minutes?")

const phoneTexts = prompt("How many texts?")

// This is then filtering the object of phones to match what the user has entered into the system.

const matchingPhones = phones.filter(function(phone) {
    if(phone.brand===phoneBrand && phone.cost.toString()===phoneCost && phone.data===phoneData && phone.minutes.toString()===phoneMins && phone.texts.toString()===phoneTexts) {
        return true;
    }
    return false;

})

// This is then displaying data in the system.

const returnPhones = document.querySelector("#returnPhones");

matchingPhones.forEach(function(phone) {

    const newParagraph = document.createElement("p");
    newParagraph.textContent=`The matching plans are as follows - ${matchingPhones}`;
    returnPhones.appendChild(newParagraph);

})



【问题讨论】:

    标签: javascript html css object dom


    【解决方案1】:

    我确实得到了回应,#1 确保在定义 Javascript 之前定义 returnPhones div:

    <div id="returnPhones">
    
    </div>
    

    我已经测试了以下修改后的代码,它可以工作:

        const phones = [{
        name: "iPhone XS", brand: "Apple", cost: 43, data: "500MB", minutes: "Unlimited", texts: "Unlimited"
    },
        {
            name: "iPhone 11", brand: "Apple", cost: 64, data: "90GB", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "Galaxy S10", brand: "Samsung", cost: 30, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "Galaxy S10", brand: "Samsung", cost: 65, data: "Unlimited", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "Galaxy A10", brand: "Samsung", cost: 11.99, data: "500MB", minutes: 250, texts: "Unlimited"
        },
        {
            name: "Galaxy S9", brand: "Samsung", cost: 31, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "StarTAC 130", brand: "Motorola", cost: 3, data: "0MB", minutes: 200, texts: 500
        },
        {
            name: "Pixel 3A", brand: "Google", cost: 23, data: "4GB", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "Xperia 10", brand: "Sony", cost: 30, data: "20GB", minutes: "Unlimited", texts: "Unlimited"
        },
        {
            name: "P30", brand: "Huawei", cost: 27.99, data: "500MB", minutes: 500, texts: "Unlimited"
        }]
    
    // These are asking the user for entry of the data into the system.
    const phoneBrand = prompt("Enter a phone brand")
    
    const phoneCost = prompt("Enter a monthly cost")
    
    const phoneData = prompt("Enter the amount of data")
    
    const phoneMins = prompt("How many minutes?")
    
    const phoneTexts = prompt("How many texts?")
    
    // This is then filtering the object of phones to match what the user has entered into the system.
    
    const matchingPhones = phones.filter(function(phone) {
        if(phone.brand===phoneBrand && phone.cost.toString()===phoneCost && phone.data===phoneData && phone.minutes.toString()===phoneMins && phone.texts.toString()===phoneTexts) {
            return true;
        }
        return false;
    
    })
    
    // This is then displaying data in the system.
    
    const returnPhones = document.querySelector("#returnPhones");
    
    matchingPhones.forEach(function(phone) {
    
        const newParagraph = document.createElement("p");
        newParagraph.textContent='The matching plans are as follows - ' + phone.name;
        returnPhones.appendChild(newParagraph);
    
    })
    

    【讨论】:

      猜你喜欢
      • 2011-01-12
      • 2014-12-10
      • 2020-06-19
      • 1970-01-01
      • 2012-10-04
      • 2017-08-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多