gpt4 book ai didi

关于 css 高度的 JavaScript If Else 语句

转载 作者:行者123 更新时间:2023-11-30 07:17:03 25 4
gpt4 key购买 nike

这是我的代码

<!doctype html>

<html>
<head>
<meta charset="utf-8">
<script src="js/jquery-1.7.2.min.js"></script>
<style>
div{
border:2px solid black;
width:200px;
min-height:300px;
}
</style>
</head>
<body>
<div>
<p id="demo">This will change</p>
<input type="button" value="OK" onclick="myFunction()"/>
</div>
<script>
$(document).ready(function()
{
$("input").click(function()
{
if($("div").height("300px") === true){
document.getElementById("demo").innerHTML="HELLO WORLD!";
}
});
});
</script>
</body>
</html>

我想做的是这样,如果 div 高度等于 300px,则单击按钮时“这将更改”段落将更改为 Hello World。抱歉,这是我第一次使用 javascript

最佳答案

$("div").height("300px")设置div的高度,如果高度等于300px则不返回true。

你想要 $('div').height() === 300

http://api.jquery.com/height/

关于关于 css 高度的 JavaScript If Else 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11993474/

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