Javascript 引导选择在jquery pep中不工作

Javascript 引导选择在jquery pep中不工作,javascript,jquery,css,twitter-bootstrap,Javascript,Jquery,Css,Twitter Bootstrap,我正在使用引导选择和插件 问题是,选择选项将不会打开,或者我无法选择选项 这是密码 <div id="parent"> <div class="pep peppable"> <form> <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input typ

我正在使用引导选择和插件 问题是,选择选项将不会打开,或者我无法选择选项

这是密码

<div id="parent">
  <div class="pep peppable">
    <form>
      <div class="form-group">
        <label for="exampleInputEmail1">Email address</label>
        <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
      </div>
      <div class="form-group">
        <label for="exampleInputPassword1">Password</label>
        <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
      </div>

      <div class="form-group">
        <label for="exampleInputPassword1">Password</label>
        <select class="form-control">
          <option>1</option>
          <option>2</option>
          <option>3</option>
          <option>4</option>
          <option>5</option>
        </select>
      </div>


    </form>

  </div>

</div>
请参阅shouldPreventDefault

这里有一个

shouldPreventDefault


这里有一个

两个jquery都有冲突。在这里检查@Leothelion,如果我要删除jquery js,但我如何使用jquery和jquery.pep.js?因为在我的站点中,我还需要使用jquery.js,这两个jquery都是冲突的。在这里检查@Leothelion,如果我将删除jquery js,那么我如何使用jquery和jquery.pep.js呢?因为在我的站点中,我还需要使用jquery.js
$(document).ready(function(){
        $('.peppable').pep({  constrainTo: 'parent' });

      });