gpt4 book ai didi

javascript - 从 Div 获取图像文件名并复制到按钮悬停时的文本字段中

转载 作者:行者123 更新时间:2023-11-28 09:55:57 26 4
gpt4 key购买 nike

在 id 为 #prlogo 的 div 中,我有一个图像。当我将鼠标悬停在 ID 为 #button 的按钮上时,我需要将服务器上图像的文件名或位置复制到 ID 为 #input_2_16 的文本中。

听起来很简单,但我一直在努力尝试做到这一点......

div html:

<div id="prlogo" class="prlogo"><img class="logoplace" src="../preview/logo-place.png"/>
</div>

米罗

最佳答案

没有更多上下文并使用 jQuery。

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() { //this anonymous function will run when the page is ready
$("#button").hover(function() {
//mouse enter
var imgSrc = $("#prlogo img").attr("src");
//assumes there is an <img /> tag as a child of the #prlogo div
$("#input_2_16").val(imgSrc);
},function() {
//mouse leave
});
});
</script>

如果你不想在鼠标离开时做任何事情,你可以这样做

$("#button").mouseenter(function() {
//mouse enter
var imgSrc = $("#prlogo img").attr("src");
//assumes there is an <img /> tag as a child of the #prlogo div
$("#input_2_16").val(imgSrc);
});

关于javascript - 从 Div 获取图像文件名并复制到按钮悬停时的文本字段中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10013540/

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