我在我的代码中使用了 zoom-master 插件来进行图像缩放。
我的代码是
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'></script>
<script src='js/jquery.zoom.js'></script>
<script>
$(document).ready(function(){
console.log($('#ex1').length);
$('#ex1').zoom();
});
</script>
我的html代码是
<span class='zoom' id='ex1'>
<img src="admin/uploaded_image/<?php echo $imagee;?>" width="265" height="260" id='jack' />
</span>
但我收到一个 JavaScript 错误
> TypeError: $(...).zoom is not a function [Break On This Error]
>
> $('#ex1').zoom();
这段代码有什么问题?