我仍然无法使用jQuery来获取脉冲图像。 这个代码显然应该可以工作但不会。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
</head>
<body>
<script src="jquery-1.4.2.js" type="text/javascript"></script>
<script src="jquery.pulse.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function() {
jQuery('#waterloo').pulse({
opacity: [0,1]
}, {
duration: 100, // duration of EACH individual animation
times: 3, // Will go three times through the pulse array [0,1]
easing: 'linear', // easing function for each individual animation
complete: function() {
alert("I'm done pulsing!");
}
});
</script>
<a href="#"><img src="waterloo.png" border="0" class="env" id="waterloo"/></a>
</body>
</html>
两个js文件都在同一个目录中,所以我不知道为什么它不起作用。
答案 0 :(得分:3)
计算右括号和括号的数量与开数 - 括号的比较。您尚未关闭document.ready-statement。