I'm sorry for my incomplete first question (sometime questions don't seem so) and for my late response (for work reasons I could not do this before).
I mean from "navbar" choose several background image inside a jumbotron
(class="jumbotron" style="background-image: url(http://xy ....).
Thank you all for you help.
Not sure what it is you are doing (my usual response) but if as you say you just want to change a set of background images in a Jumbotron container onclick of some buttons or navigation items see below (change the directory name from 'fruits' in the javascript script to point to where your images are kept and obviously change the 'data-image' names in the links to match those of yours:
HTML EXAMPLE
<div class="jumbotron"></div>
<nav class="changeBg">
<li><a href="#" data-image="blackberries">Blackberries</a></li>
<li><a href="#" data-image="grapes">Grapes</a></li>
<li><a href="#" data-image="oranges">Oranges</a></li>
<li><a href="#" data-image="pear">Pear</a></li>
</nav>
JAVASCRIPT (Insert this at the foot of your page before the closing </body> tag.
<script>
var changeBg = document.querySelector(".changeBg");
var jumbotron = document.querySelector(".jumbotron");
changeBg.addEventListener("click", function(e)
{
jumbotron.style.backgroundImage = 'url(fruits/' + e.target.dataset.image + '.jpg)';
});
</script>
CSS
.jumbotron {
height: 500px;
background-image: url('fruits/apples.jpg');
background-size: cover;
}