$ is not a function解决办法

$ is not a function

// $(function () {
//     $('.portfolio-two-item').click(function () {
//         var video_path = $(this).data('src');
//         layer.open({
//           type: 2,
//           title: '查看视频',
//           shadeClose: true,
//           shade: 0.8,
//           // area: ['100%', '600px'],
//           content: video_path //iframe的url 
//         });
//     })
// })

$有问题时,采用以下方式

(function ($) {
    $('.portfolio-two-item').click(function () {
        var video_path = $(this).data('src');
        layer.open({
          type: 2,
          title: '查看视频',
          shadeClose: true,
          shade: 0.8,
          // area: ['100%', '600px'],
          content: video_path //iframe的url 
        });
    })    
})(jQuery);

你可能感兴趣的:(前端开发)