Difference between jquery and $

前端 未结 8 1779
北荒
北荒 2021-01-02 14:09

I did heavy use of jquery on my php project. But on some page the $ is not working, so I have to use jquery. For example:

jQuery(\'#mycarousel\'         


        
8条回答
  •  温柔的废话
    2021-01-02 14:35

    $.ajax({
        url: 'Emp.asmx/getDesignation',
        type:'post',
        contentType: 'application/json;charset=utf-8',
        dataType: 'json',
        data: "{}",
        aync: false,
    

提交回复
热议问题