bootstrap 的下拉菜单,点击无反应。

bootstrap 的下拉菜单,点击无反应。

我用的是bootstrap 4版本,按要求都引入依赖文件了。引用的都是bootstrap官网的链接。

img

img

div代码

img

img

但是不管怎么点击,换了IE,chorm,firfox,360极速,都没反应,是需要自己写点击事件嘛,不应该呀。
求告知

<div class="dropdown">
    <button type="button" class="btn dropdown-toggle" id="dropdownMenu1" 
            data-toggle="dropdown">
        主题
        <span class="caret"></span>
    </button>
    <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
        <li role="presentation" class="dropdown-header">下拉菜单标题</li>
        <li role="presentation" >
            <a role="menuitem" tabindex="-1" href="#">Java</a>
        </li>
        <li role="presentation">
            <a role="menuitem" tabindex="-1" href="#">数据挖掘</a>
        </li>
        <li role="presentation">
            <a role="menuitem" tabindex="-1" href="#">
                数据通信/网络
            </a>
        </li>
    </ul>
</div>

并且引用的顺序都没有错,jquery在前,bootstrap.js 在后。