gpt4 book ai didi

javascript - 在表单字段 HTML/JQuery 中单击时显示图像

转载 作者:行者123 更新时间:2023-12-02 15:15:03 25 4
gpt4 key购买 nike

当我使用 HTML/jQuery 或 JavaScript 单击表单字段时,是否可以使图像可见?

这是我的表单字段(在 Laravel 中):

<div class="form-group">

{!! Form::label('twitter', 'Twitter:') !!}
{!! Form::text('twitter', null, ['class'=>'form-control']) !!}

</div>

html部分:

<a href="http://ss">
<img width="16"
src="https://s3.amazonaws.com/htmlsig-assets/round/twitter.png" alt="Twitter">
</a>

最佳答案

给链接一个ID,使用CSS隐藏它

#linkId { display:none }

然后做

$(function() {
$(".form-control").on("click",function() {
$("#linkId").show();
});
});

如果为空则删除:

$(function() {
$(".form-control").on("focus, keyup",function() {
$("#linkId").toggle(this.value!="");
});
});

关于javascript - 在表单字段 HTML/JQuery 中单击时显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34542528/

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