gpt4 book ai didi

javascript - 如何使用 jQuery 移动 <input> 元素?

转载 作者:行者123 更新时间:2023-11-29 18:18:29 26 4
gpt4 key购买 nike

正如标题所说,我正在寻找一种有效的方法来在鼠标移到按钮上时移动按钮(仅适用于我正在进行的一个小项目)。我决定使用 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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src = "jquery.js"></script>
<title>Click The Button!</title>
</head>

<body>
<input type="button" value="Try and Click Me!">
<script>
$("input").mouseenter(function(){
$(this).style.position = "absolute";
$(this).style.left = Math.floor(Math.random()*600)+"px";
$(this).style.top = Math.floor(Math.random()*400)+"px";
});
</script>
</body>

</html>

必须编辑感谢所有回答正确的人!非常感谢。

最佳答案

在处理诸如 $(this) 之类的 jQuery 对象时,使用 css 函数来调整 CSS 属性。使用 element.style.left 等用于访问 native DOM 元素的属性,而不是使用 jQuery 选择的元素。

$("input").mouseenter(function(){
$(this).css("position","absolute");
$(this).css("left", Math.floor(Math.random()*600)+"px");
$(this).css("top",Math.floor(Math.random()*400)+"px");
});

JS fiddle : http://jsfiddle.net/5LWAk/

关于javascript - 如何使用 jQuery 移动 &lt;input&gt; 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20932546/

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