function checkPP() {
if (document.getElementById('pass').value != document.getElementById('conf').value) {
alert ("Пароль и Подтверждение пароля не совпадают!")
}
else {
document.forms['forma'].submit();
}
}
function checkPP(e) {
if (document.getElementById('pass').value != document.getElementById('conf').value) {
alert ("Пароль и Подтверждение пароля не совпадают!")
e.preventDefault();
}
}
onClick="checkPP()"
onclick="checkPP(event)"
style=""
в HTML или .style.x = y
в JS. Если свойство установлено через CSS-селектор, будет пустая строка.change
-> input
caniuse.com/#feat=input-eventfunctio
-> function
<div />
- не думаю.UTF-8 without BOM
. Мне тогда помогло.<meta name="copyright" content="" />
стоит не таб, не пробелы, а непонятно что. Заменил на таб - заработало.meta
в body
, удивился, полез в код, нашел разницу между author
и copyright
/contacts.html
на https://my-cool-site.ru/load.php?url=http://his-bad-site.com/contacts.html
. Проблема в том, что URL может встретиться где угодно: в JS Вы его можете не заметить:var pr = "http";
var host = "his-bad-site.com/";
var path = "contacts.html";
location.href = pr + "://" + host + path; // Не отловите
...
<script type="text/javascript">
localStorage.setItem("from", "banana");
</script>
...
...
<script type="text/javascript">
localStorage.setItem("from", "motocycles");
</script>
...
...
<script type="text/javascript">
var option = localStorage.getItem("from");
// UPD НЛО прилетело и вставило сюда неправильный код
document.querySelector("select").value = option;
</script>
...
Something | Right column
Something else | Other
The <section> element defines a section in a document.<section> обозначает секцию.
According to W3C's HTML5 documentation: "A section is a thematic grouping of content, typically with a heading."
A home page could normally be split into sections for introduction, content, and contact information.
The <article> element specifies independent, self-contained content.Элемент <article> обозначает независимый элемент.
An article should make sense on its own, and it should be possible to read it independently from the rest of the web site.
Examples of where an <article> element can be used:
Forum post
Blog post
Newspaper article
The <main> tag specifies the main content of a document.Тег <main> обозначает главный контент документа.
The content inside the <main> element should be unique to the document. It should not contain any content that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms.
<a>
<b></b>
</a>
<c></c>
a ~ c {} /* находит */
b ~ c {} /* не находит */
<a></a>
<b></b>
<c></c>
a + b {} /* работает */
b + c {} /* работает */
a + c {} /* не работает */