fancybox - jsp 不工作

fancybox - jsp not working

如何使用fancybox在jsp中显示弹出表单?我在 html 中使用了 fancybox,效果很好;但我很难将它包含在我的 jsp.

我已确保包含 fancybox 库:

<script type="text/javascript" src="<c:url value="resouces/js/fancybox.js" />"></script>

在 jsp 正文中我有:

<a class="modal-popup" href="#modal-create-form"><span class="small-icons plus-icon"></span>New Form</a>    

<div id="modal-create-form" class="modal-inline">Create Form</div>

如果我点击链接,"Create Form" 将显示我的 html,而不是我的 jsp。

确保你包含在内fancybox.js

$(document).ready(function(){
   $(".modal-popup").fancybox({

   });
});

Demo