“Navigationsleiste auf mehr als einer Seite” Code-Antworten

Navigationsleiste auf mehr als einer Seite

<!-- add in head: --> <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

<!--Navigation bar-->
<div id="nav-placeholder">

</div>

<script>
$(function(){
  $("#nav-placeholder").load("nav.html");
});
</script>
<!--end of Navigation bar-->
Generic name

Navigationsfaktor mehrere Seiten

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$.get("navigation.html", function(data){
    $("#nav-placeholder").replaceWith(data);
});
</script>
chfle

Navigationsfaktor mehrere Seiten

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="./bootstrap-3.3.2-dist/css/bootstrap.min.css">
</head>
<body>
    <div class="container">
        <@wpbModule externalKey="9255b083-95a3-4752-a4fd-5bad5ad57fc0" />
        <h2> Home page </h2>
        Dummy home page...        
    </div>
</body>
</html>
chfle

Ähnliche Antworten wie “Navigationsleiste auf mehr als einer Seite”

Fragen ähnlich wie “Navigationsleiste auf mehr als einer Seite”

Weitere verwandte Antworten zu “Navigationsleiste auf mehr als einer Seite” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen