gpt4 book ai didi

javascript - HTML 中消失的按钮

转载 作者:太空狗 更新时间:2023-10-29 15:23:56 31 4
gpt4 key购买 nike

我写了一个简单的输入框,里面有一个按钮。代码如下。

form {
width: 50%;
}


/* Style the search field */

.add-on {
position: relative;
}

.add-on input {
width: 100%;
border-radius: 0;
}

.add-on button {
position: absolute;
border-radius: 0;
top: 2px;
right: 3px;
height: 33px;
width: 60px;
z-index: 2;
font-size: 14px;
padding: 5px;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<form class="navbar-form my-2 my-lg-0 ml-auto" role="search">
<div class="input-group add-on">
<input type="text" class="form-control" placeholder="Search" name="srch-term" id="srch-term">
<button class="btn btn-primary" type="submit">Search</button>
</div>
</form>

如您所见,当我在输入字段中单击时,按钮消失了。当我在该表格外单击时,它会重新出现。但我不希望它在单击输入字段时消失。我怎样才能做到这一点?

最佳答案

#srch-term 元素上设置 z-index: 1

关于javascript - HTML 中消失的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55824404/

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