我在网上找到了脚本FaceBook Style Image Editing jQuery Plugin,但它似乎不起作用
这是我的代码test.html:
//调用jquery
<script type="text/javascript" src="http://localhost/app/js/jquery/jquery-1.6.4.min.js">
//调用css
<style type="text/css">
//css code that obtain from website
<style>
//调用js app
<script type="text/javascript">
//js code that is obtained from website
</script>
//调用应用程序
</script>
$('#albump').editFaceBook();
</script>
//添加图片
<img id ="albump" src="http://localhost/app/imgs/album.gif">
我做错了什么?或者这段代码错了?
答案 0 :(得分:1)
您需要添加此功能
<script type="text/javascript" src="http://localhost/app/js/jquery/jquery-1.6.4.min.js">
<script>
$(document).ready(function(){
$("#albump").editFaceBook();
});
<script>
答案 1 :(得分:0)
查看您发布的文档链接的第二行 - 它仅适用于<div>
。将您的图像包装在div中,然后调用该插件:
<div id="albump">
<img src="http://localhost/app/imgs/album.gif" />
</div>
<script type="text/javascript">
$("#albump").editFacebook();
</script>