Latest weather at Elysium Planitia
InSight is taking daily weather measurements (temperature, wind, pressure) on the surface of Mars at Elysium Planitia, a flat, smooth plain near Mars’ equator.
https://mars.nasa.gov/insight/weather/
Latest weather at Elysium Planitia
InSight is taking daily weather measurements (temperature, wind, pressure) on the surface of Mars at Elysium Planitia, a flat, smooth plain near Mars’ equator.
https://mars.nasa.gov/insight/weather/
<a href="#" onclick="…">действие</a>
Не делайте так, побойтесь канделябры. Кнопки давно изобретены.
<button type="button" onclick="…">действие</button>
Ну или даже скорее как-то так:
<button type="button" class="my-action">действие</button>
+
function on_my_action(ev)
{
ev.preventDefault();
// на кнопку будет указывать ev.currentTarget
// …
}
function on_dom_loaded()
{
var buttons = document.querySelectorAll('.my-action');
for (var i = 0, len = buttons.length; i < len; ++i) {
buttons[i].addEventListener('click', on_my_action, false);
}
}
document.addEventListener('DOMContentLoaded', on_dom_loaded, false);