我刚刚从 Jquery 开始,我在我的 html 文件中导入了 jquery 文件 src="http://code.jquery.com/jquery-latest.min.js。我还想导入我在其中创建的其他函数同一个文件。这怎么可能导入多个 js 文件?例如,我想将准备好的从 html 文件分离到一个新的 js 文件:
enter <!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="site.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js">
</script>
</head>
<body>
<h1><b> TWEET PEAK </b></h1>
<a class="button_example button_about" href=" menu.html"> </a>
<img src="http://i1061.photobucket.com/albums/t480/ericqweinstein/elevator.png"/>
<script>
$(document).ready(function(){
$('img').animate({top:'+=100px'},1000);
});
</script>
</body>
</html>here