嗨,我在 html 页面中实现了一些问题 2 jquery 这是我使用的查询:
<script language="Javascript" type="text/javascript" src="js/jquery.blinds-0.9.js"></script>
<script type="text/javascript"> //running the script for blinds
$(window).load(function () {
// start the slideshow
$('.slideshow').blinds();
})
</script>
<script language="Javascript" type="text/javascript" src="jquery.min.js"></script>
<script language="Javascript" type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript"> //running the script for accordion
$(document).ready(function() {
$("#accordion").accordion();
});
</script>
问题是如果我在 html 中实现它们(手风琴或百叶窗)只有 1 个脚本可以运行,有谁知道如何修改它们以便所有 jquery 都可以运行,并且我可以在整个页面中重用它们?
例如,如果我将手风琴 js 引用添加到头部,百叶窗将不会运行。
将不胜感激,在此先感谢!