Не удается прочитать свойство нулевой ошибки ONSEN Ui - PullRequest
0 голосов
/ 20 января 2020

Я делаю код со строкой JavaScript, который изменяет текст элемента

в коде HTML.

    var card = document.getElementById("greeting");
    card.style.display = "none";
<template id="home.html">

        <ons-page>
            <ons-fab position="bottom right" onclick="fn.load('item.html')">
                <ons-icon icon="md-plus"></ons-icon>
            </ons-fab>
            <ons-toolbar>
                <div class="left">
                    <ons-toolbar-button onclick="fn.open()">
                        <ons-icon icon="md-menu"></ons-icon>
                    </ons-toolbar-button>
                </div>
                <div class="center">
                    Upcoming
                </div>
            </ons-toolbar>
            <ons-card onclick="fn.load('item.html')" id="greeting">
                <div class="title">No assignments!</div>
                <div class="content">Looks like you have no upcoming assignments! Press the "+" button to add a new assignment.</div>
            </ons-card>
        </ons-page>

Каждый раз, когда я выполняю код, он всегда выдает ошибку: main. js: 53 Uncaught TypeError: Невозможно прочитать свойство 'style' из null , Как мне это исправить?

...