下午好
在我那里

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="{{ asset('bundles/reflorestasite/js/jquery.maskedinput.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('bundles/reflorestasite/js/validacoes.js') }}"></script>
<script type="text/javascript" src="{{ asset_url }}"></script>

在“validacoes.js”文件上有
$(document).ready(function(){

  $(".cpf").mask("999.999.999-99");
  $('.cpf').blur(function () {
    var id=$(this).attr("id");
    var val=$(this).val();
    var pattern = new RegExp(/[0-9]{3}[\.]?[0-9]{3}[\.]?[0-9]{3}[-]?[0-9]{2}/);

    if(val.match(pattern) == null){
      $("#"+id+"_error").html("Digite um CPF válido");
    }
  });
});

我已经在控制台上进行了验证,并且所有的javascript文件都在那里。但是我收到错误“未捕获的TypeError:$(...)。mask不是函数”

有谁知道symfony为什么不识别maskedinput插件?

非常感谢你。

最佳答案

将此行更改为

$(document).ready(function(){


$(document).ready(function($){

关于javascript - maskedinput未捕获的TypeError : $(…).掩码不是函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33223283/

10-09 04:34