我有网站,想在其中添加一些脚本。当我试图添加不能因为两个javascripts不能一起工作时:
我的HTML代码
<head>
<link rel="stylesheet" type="text/css" href="http://2gdmedia.com/css/default.css" />
<link rel="stylesheet" type="text/css" href="http://2gdmedia.com/css/component.css" />
<script src="http://2gdmedia.com/js/modernizr.custom.js"></script>
<link rel="stylesheet" href="http://en.2gdmedia.com/reveal.css">
<!-- Attach necessary scripts -->
<!-- <script type="text/javascript" src="jquery-1.4.4.min.js"></script> -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script>
<script type="text/javascript" src="http://en.2gdmedia.com/jquery.reveal.js"></script>
<script>$(document).ready(function() {
// trigger reveal manually.
$('#myModal').reveal({
animation: 'fadeAndPop', //fade, fadeAndPop, none
animationspeed: 300, //how fast animtions are
closeonbackgroundclick: true, //if you click background will modal close?
dismissmodalclass: 'close-reveal-modal' //the class of a button or element that will close an open modal
});
});</script>
</head>
只有当我删除它时:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script>
然后首先javascript :)请帮助我,不要给这个问题下降率因为我最近被禁止。先感谢您。如果有任何细节需要提供我准备评论:)
答案 0 :(得分:1)
这可能是因为jquery冲突。如果是这种情况,请使用jquery.or的noConflict将jquery的兼容版本添加到您的页面。
如果不是这样,那么首先添加jquery然后添加所有其他文件并查看。