#javascript #html #jquery #css
#javascript #HTML #jquery #css
Вопрос:
Это мой первый шаг в попытке реализовать веб-сайт HTML / CSS, поэтому, пожалуйста, примите это во внимание.
У меня есть несколько страниц .html, которые реализуют панель навигации из nav.html с использованием функции jQuery (я полагаю?). Другие HTML аналогичны index. Есть идеи о том, что не так?
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
Код, который я использовал для добавления активного класса, является чистым JS.
Вот index.html :
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/9a39db93cf.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
let count = 0;
function counter()
{
count ;
document.querySelector('#pageContent').innerHTML = count;
}
</script>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<script type="text/javascript">
const currentLocation = location.href;
const menuItem = document.querySelectorAll('a');
const menuLength = menuItem.length
for( let i=0; i<menuLength; i ){
if(menuItem[i].href === currentLocation){
menuItem[i].className = "active";
}
}
</script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>My Webpage</title>
</head>
<body>
<div id="nav-placeholder" class="sticky-top">
</div>
<div class="firstPage">
<h4>The title of this paragraph</h4>
<img onclick="counter(); return false;" src="images/mirciun.jpg" alt="mirciun" height=auto max-width=auto class="center">
<p id='pageContent'>0</p>
</div>
</body>
</html>
CSS:
body{ display: block; margin: 0; } .menu li{ display: inline-block; margin: 0; } ul.topnav{ background-color: #333; margin: 0; padding: 0; text-align:center; overflow: hidden; } ul.topnav li a{ display: block; font-size: 20px; padding: 10px; color: whitesmoke; text-decoration: none; } ul.topnav li a:hover:not(.active) {background-color: #222;} ul.topnav li a.active {background-color: #4CAF50;} @media screen and (max-width: "600px") { ul.topnav li {float: none;} } #brand{ display: table-cell; vertical-align: middle; line-height:50px; } #topText{ max-width: 500px; margin: auto; text-align: center; border: 5px solid green; color: red; background-color: #0f0f0f; margin-top: 10px; } .firstPage { margin-top: -20px; background-color:grey; max-width: 100%; height: auto; } h4{ padding: 20px; text-align: center; } .center { display: block; margin-left: auto; margin-right: auto; width: 50%; } #pageContent{ text-align:center; width: 75%; margin: auto; color: blue; }
Комментарии:
1. что происходит не так? я не вижу описания проблемы, только «что не так», вы получаете ошибки консоли? происходит что-нибудь неожиданное?
2. оберните свой код javscript
const currentLocation = location.href; const menuItem = document.querySelectorAll('a'); const menuLength = menuItem.length for( let i=0; i<menuLength; i ){ if(menuItem[i].href === currentLocation){ menuItem[i].className = "active"; } }
с$(function() {})
помощью и переместите этот тег javascript в нижнюю часть тега body.3. Вы добавляете активный класс до загрузки содержимого. jQuery
$(function(){ ... })
выполняется после загрузки DOM.
Ответ №1:
оберните свой код jquery в готовую функцию и переместите в нижнюю часть страницы.
$(function () {
const currentLocation = location.href;
const menuItem = document.querySelectorAll('a');
const menuLength = menuItem.length
for (let i = 0; i < menuLength; i ) {
if (menuItem[i].href === currentLocation) {
menuItem[i].className = "active";
}
}
})
Комментарии:
1. Я добавил этот раз перед </body> метки : <script type=»text/javascript»> $(document). готово(function () { const currentLocation = location.href; const MenuItem = document. querySelectorAll(‘a’); const menuLength = MenuItem.length for (пусть i = 0; i < menuLength; i ) { if (MenuItem[i].href === currentLocation) { MenuItem[i].className = «active»; } } }) </script> Все еще не работает.
Ответ №2:
Неважно, я решил это с помощью $( window ).on( "load", function(){
, вместо $( document ).ready(function () {
. Краткое объяснение заключается в том, что код будет запущен, как только будет готова вся страница (изображения или фреймы iframes), а не только DOM. — > https://learn.jquery.com/using-jquery-core/document-ready /