我一直在一個網站上作業:https : //coronavirustest.co.nz/。
在表單的某個點,我在 div 中有一個隱私免責宣告.privacy-disclaimer,它(我不知道為什么)沒有顯示在呈現的頁面中。VS Code 中沒有控制臺錯誤和警告。
這種行為甚至表現在下面的代碼片段中,我做錯了什么?
<div class="subject-email-address mt-2">
<label
for="subject-email-address"
class="font-bold text-gray-700 w-1/4"
>Subject Email Address (for a copy of the test results)</label
>
<input
type="email"
name="subject-email-address"
id="subject-email-address"
class="border-b-2 w-full bg-gray-100 text-lg p-1"
placeholder="[email protected]"
/>
</div>
<div class="privacy-disclaimer mt-2">
<h3 class="font-bold">Privacy & Data Handling</h3>
<p class="max-w-xl text-sm">
Information is collected for the purpose of testing for COVID-19,
and reporting positive tests to the Ministry of Health for further
treatment. Information will be seen by the subject (person
providing the test), the subject's employer, the tester (person
conducting the test), the tester's employer, Sober Check Ltd
(provider of the form), and the Ministry of Health (in the event
of a positive test). Some information on this form is optional,
the rest is required. If required information isn't provided, the
test results will not be saved. All information collected will be
handled in accordance with the Privacy Act 2020.
</p>
<div class="privacy-acceptance mt-1 text-lg p-1">
<label for="privacy-disclaimer" class="border-b-2 cursor-pointer"
>I'm happy to proceed</label
>
<input
type="checkbox"
name="privacy-disclaimer"
id="privacy-disclaimer"
required
class="border-b-2 bg-gray-100 cursor-pointer"
/>
</div>
</div>
uj5u.com熱心網友回復:
它被我的廣告攔截器攔截了。禁用它會正確顯示 div,也有不同的類(過濾器可能針對privacy-disclaimer和privacy-acceptance),它們通過廣告攔截器獲得。請注意,將來有人可能還會將您的新課程添加到他們的阻止串列中。
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/365497.html
標籤:html
上一篇:使用jsoup提取資訊
