gpt4 book ai didi

javascript - jQuery:突出显示 div 框 onload

转载 作者:可可西里 更新时间:2023-11-01 13:13:22 25 4
gpt4 key购买 nike

此 jQuery 代码将在单击时突出显示 div 框。

我想在加载时获得亮点,我该怎么做?

<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

<style type="text/css">
div { margin: 0px; width: 100px; height: 80px; background: #666; border: 1px solid black; position: relative; }
</style>

<script>
$(document).ready(function() {

$("#div1").click(function () {
$(this).effect("highlight", {}, 3000);
});

});
</script>
</head>
<body">
<div id="div1"></div>
</body>
</html>

最佳答案

highlight 的语句放在 document.ready 中,与绑定(bind) click 事件的级别相同。

Live Demo

$(document).ready(function() {
$("#div1").effect("highlight", {}, 3000); //this will highlight on load
$("#div1").click(function () {
$(this).effect("highlight", {}, 3000);
});
});

关于javascript - jQuery:突出显示 div 框 onload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15853619/

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