bootstrap工具提示无法使用我的jquery函数

时间:2015-10-05 05:49:31

标签: jquery css twitter-bootstrap

如果我删除了我的jquery链接工具提示悬停css后台工作正常但我的jquery功能不起作用(显然是因为jquery链接被删除)请查看我的代码....谢谢   `

  <div class="col-sm-6">
    <input type="text" id="id_part_pay"  value="<?php echo $listing['part_pay'];?>"   class="textbox" name="id_part_pay" <?php if($checked)echo 'style="display: block"'; else echo 'style="display: none"';?> />
    <a href="" class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" title="Hooray!"></a>
    <span class="ft-s12"></span>
  </div>  
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">    
    $(function() {
        $("#id_part_pay").next('span').hide(); 
        $("#id_part_pay").keyup(function() {
        var input = $(this).val();
        var v = input % 10;
        var span = $(this).next('span'); 
        if (v !== 0) {
        span.text("Enter Percentage in multiple of 10").show(); 
        return;
        }
        if (input < 20 || input > 100) {
         span.text("Percentage should be between 20 - 100").show();
        return;
        }
        span.text('').hide();//Clear Text and hide
       });
    });
  </script>

2 个答案:

答案 0 :(得分:1)

您不能拥有同一src代码的script和内容

  

src
此属性指定外部脚本的URI;这个   可以用作直接在脚本中嵌入脚本的替代方法   文献。如果脚本元素指定了src属性,则应该   没有在其标签中嵌入脚本。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
    $(function () {
        $("#id_part_pay").next('span').hide();
        $("#id_part_pay").keyup(function () {
            var input = $(this).val();
            var v = input % 10;
            var span = $(this).next('span');
            if (v !== 0) {
                span.text("Enter Percentage in multiple of 10").show();
                return;
            }
            if (input < 20 || input > 100) {
                span.text("Percentage should be between 20 - 100").show();
                return;
            }
            span.text('').hide(); //Clear Text and hide
        });
    });
</script>

答案 1 :(得分:1)

您不能以{1}的方式包含

首先关闭@RequestMapping(value = "getData", method = RequestMethod.GET) public String get(Model model, HttpServletRequest httpServletRequest) { } jQuery lib脚本

<script>

然后编写自定义脚本

</script>