我正在尝试制作一个同时使用 jQuery 和 MooTools 的基本网页。
你可以在这里看到一个工作示例:http: //jsfiddle.net/DddQA/
但是,每当我尝试引用 MooTools 时,它都会破坏我的页面。
这是我当前遇到的问题的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1rc1.min.js"></script>
<script type="text/javascript">
<!-- remove this line below to make the hyperlink box work correctly -->
jQuery.noConflict();
//<![CDATA[
$(window).load(function(){
$(".affiliate-scheme").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
});//]]>
</script>
<!-- remove this line below to make the hyperlink box work correctly -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
</head>
<body id="affiliate-scheme">
<div class="affiliate-scheme" style="background:red">
<h3>Affiliate Scheme</h3>
<ul>
<li><a href="/affiliate-scheme/" title="Promote with our Affiliate Scheme">Promote Us</a></li>
</ul>
</div>
</body>
</html>
非常感谢这里的任何帮助。非常感谢。