单击链接后,我正在尝试制作 FadeOut 效果。但我的语法似乎是错误的。当我单击时,它会淡出,然后转到“~~nothing~~.html”页面,它只是没有获得组成变量的值。id boo 附加到标签 ( body id="boo" ) 并且在 css 样式表中 id #boo设置为display:none; 我正在使用 jquery-1.7.2.min
<script type="text/javascript">
$(document).ready(function(){
$('#go').click(function(e) { //When something with the id 'go' is clicked,
e.preventDefault(); //Prevent default action (?)
var url = $('#go').val() + ".html"; //set url as "Clicked 'go' value + .html" (374.html"
$('#boo').fadeOut(600, function() { window.location.href = url; }); //fadeOut what is with the 'boo' id (body), and load the created address as a new page (?)
});
});
</script>
<a id="go" value="374" href="#">Go to page 374</a>
374.html 页面位于同一文件夹中。如果可能的话,请解释我做错了什么,并逐步进行。我是 jquery 的新手。
谢谢!