简体   繁体   English

当我点击选项卡,然后图像消失

[英]When I click on tab then images disappear

I am working on an asp.net application and when I click on a textbox and then I tap on the "tab" key two images on the same popup disappears. 我正在使用asp.net应用程序,当我单击文本框,然后点击“选项卡”键时,同一弹出窗口上的两个图像消失了。 Any idea why? 知道为什么吗?

Here is the code for the images that are disappearing. 这是消失图像的代码。

    <a href="#">
    <img id="imgUnlockabc" src="/images/lock.png" title="Unlock Field" class="unlockabc" width="12px" height="16px" />
    </a>

    <img id="imgUnlockabc" src="/images/lock.png" title="Unlock Field" class="unlockabc"  width="12px" height="16px"/>

1 - Your code isn't enough to identify the problem. 1-您的代码不足以识别问题。

2 - you can't use same id more than one time in same page 2-您不能在同一页面中多次使用相同的ID

3 - try change class name. 3-尝试更改班级名称。

 <a href="#">
  <img id="imgUnlockabc1" src="/images/lock.png" title="Unlock Field" class="unlockabc1" width="12px" height="16px" />
</a>

<img id="imgUnlockabc2" src="/images/lock.png" title="Unlock Field" class="unlockabc2"  width="12px" height="16px"/>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 单击选项卡,选项卡消失 - Click Tab, Tabs Disappear 当我单击一个活动选项卡时,我想要全部显示。 之后,当我点击我想要的标签时,我希望所有其他标签都消失 - When i click the one active tab, I want all to appear. After, when i click the tab that I want, I want all others to disappear 当我再次单击它时使输入消失 - Make input disappear when I click on it again 单击时未加载选项卡 - tab is not loading when I click HTML 单击选项卡时表单消失? - HTML Form getting disappear when i am clicking on tab? 当我添加 display: flex 时,为什么我的图像会消失? - Why do my images disappear when I add display: flex? 当我点击其中一个元素时,所有元素都会消失,但只需要我没有点击的元素消失 - All the elements disappear when I click on one of them, but only need the elements that I haven't clicked on to disappear 当我用jQuery单击外部时如何使覆盖和部分消失 - How to make overlay and section disappear when i click outside with jquery 当我单击div区域时,div应该消失,而当我单击页面中的任何位置时div应该出现 - when i click on div area, div should be disappear, and when i click on anywhere in the page div should appear 单击并在引导程序中的选项卡上悬停时如何显示下划线选项卡? - How to show a underline tab when I click and hover on a tab in bootstrap?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM