好的,现在我真的觉得自己像个白痴,但由于某种原因,我无法获得彩色盒模态窗口中的图片jcrop。这是代码:
<head runat="server">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script src="Scripts/jquery.colorbox.js" type="text/javascript"></script>
<script src="jquery.Jcrop.js" type="text/javascript"></script>
<link href="jquery.Jcrop.css" rel="stylesheet" type="text/css" />
<link href="colorbox.css" rel="stylesheet" type="text/css" />
<script>
$(document).ready(function () {
$(".addpicture").colorbox({ width: "50%", inline: true, href: ".page1" });
$(".nextpage").colorbox({ width: "50%", inline: true, href: ".page2" });
$('#jcropme').jcrop() });
});
</script>
</head>
<body>
<form runat="server">
<p><a href="#" class="addpicture">Add/Edit Picture</a></p>
<div style="display:none;">
<div id="page1">
testing text 1??
<img src="flowers.jpg" id="jcropme" />
<input type="button" value="Next Page" class="nextpage" />
</div>
<div id="page2">
testing text 2??
<input type="button" value="nextpage2" class="nextpage2" />
</div>
</div>
</form>
</body>
如果我删除最后一个javascript行($('#jcropme')。jcrop()});)然后模态窗口工作,但是当我添加该行以便jcrop工作时,模态窗口停止工作。我知道这是正确的jcrop代码,因为我直接从包含的演示中取出,并且google上的任何人似乎都没有使用过这两个插件。任何人吗?
答案 0 :(得分:2)
尝试在加载颜色框后加入jcrop调用,如下所示:
$(document).ready(function () {
$(".addpicture").colorbox({ width: "50%", inline: true, href: ".page1" });
$(".nextpage").colorbox({ width: "50%", inline: true, href: ".page2" });
$(document).bind('cbox_complete', function(){
$('#jcropme').Jcrop();
});
});