My client's site (http://mannbilly.com/) is live and he noticed that at the bottom all the last items on his Work section are one link to (https://www.youtube.com/watch?v=6ztm7YkLElI). I did a Ctrl+F
when I couldn't find out how and it found one result BUT in Chrome inspect it is next to every item that is linking to that video.
我的客户网站(http://mannbilly.com/)是实时的,他注意到在他的工作部分的所有最后项目的底部都是一个链接(https://www.youtube.com/watch?v=6ztm7YkLElI )。我做了一个Ctrl + F当我无法找到它并且它发现一个结果但是在Chrome中检查它是否链接到该视频的每个项目旁边。
<h4 class="section-title">VOICEOVER/SINGING</h4>
<div class="item">Hasbro Toys Commercial (2016)</div>
<div class="item"><a href="https://www.youtube.com/watch?v=uV9s5Ggy3Hk">Scottdw</div>
<div class="item"><a href="https://www.youtube.com/watch?v=6ztm7YkLElI">Devinsupertramp</div>
<div class="item">Operatic training – Gary Aldrich (3 months)</div>
<div class="item">Barbershop Choir – Bill Weiser (2 months)</div>
<h4 class="section-title">THEATER</h4>
<div class="item">‘A Christmas Carol’ – Young Ebenezer/Ensemble/Ghost of Christmas Present (understudy)</div>
<div class="item">Adam Cates – Tony Award for “A Gentleman’s Guide To Love and Murder”</div>
<div class="item">University of Nevada Reno</div>
</section>
My question is first how is that possible and then how can I fix it?
我的问题首先是如何可能,然后我该如何解决?
Please and thanks for any insight or help. I'm stuck and haven't had any luck with Google, developer friends, or reference books I have.
请感谢任何见解或帮助。我被困,并没有与谷歌,开发者朋友或我有的参考书籍运气。
1 个解决方案
#1
8
This link/a
tag is unclosed, so it's putting all of the HTML that comes after it in the link.
此链接/标记是未关闭的,因此它将链接后面的所有HTML放在其中。
<div class="item"><a href="https://www.youtube.com/watch?v=6ztm7YkLElI">Devinsupertramp</div>
Needs to be
需要是
<div class="item"><a href="https://www.youtube.com/watch?v=6ztm7YkLElI">Devinsupertramp</a></div>
#1
8
This link/a
tag is unclosed, so it's putting all of the HTML that comes after it in the link.
此链接/标记是未关闭的,因此它将链接后面的所有HTML放在其中。
<div class="item"><a href="https://www.youtube.com/watch?v=6ztm7YkLElI">Devinsupertramp</div>
Needs to be
需要是
<div class="item"><a href="https://www.youtube.com/watch?v=6ztm7YkLElI">Devinsupertramp</a></div>