gpt4 book ai didi

jquery .click href

转载 作者:行者123 更新时间:2023-11-30 23:50:53 25 4
gpt4 key购买 nike

有人知道为什么它不起作用吗?

<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
<script>
$('#main').click(function() {
alert('foobar');
document.location.href='02.html';
});

</script>
<style type="text/css">
body {margin:0px; background:#f2f2f2;}
#main {background:url(01.jpg) top center no-repeat; height:1745px; width:100%; text- align:center; overflow-x:hidden; cursor:pointer; cursor:hand;}
</style>
</head>
<body>
<div id="main"></div>
</body>

请帮忙

最佳答案

将点击函数包装在文档就绪函数中或将代码放在页面底部。

执行脚本时#main 元素不存在。

示例:

<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
<script>
$(document).ready(function() {
$('#main').click(function() {

document.location.href='02.html';
});
});
</script>

关于jquery .click href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4463206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com