我在 aspx 页面(asp.net)中有以下弹出 html 结构,我使用 jquery 在链接单击时隐藏和显示,但这不是 SEO 友好的。如何在不使用元标记的情况下使其对 SEO 友好?
<div class="popupbackground" id="divDescription" style="display: block;">
<div style="display: block;" class="width" id="divDescriptionPopup">
<div style="margin-top: -200px;" class="popup">
<div class="close float-right">
<a style="float: right;
display: inline" onclick="return CloseDescription_Close();" href="" id="CloseDescription">
<img title="Close" alt="Close" src="../Images/close.png">
</a>
</div>
<h3 class="float-left heading">
Description</h3>
<div class="clear">
</div>
<div class="popup_inner_description">
<div class="pop_scroll">
<span id="ContentPlaceHolder1_lblLongDescription"><font size="3"><span style="font-weight: bold;">content here.... <span style="font-weight: bold;">SavingON.co.uk</span> content here....<br><br> content here....<br><br>content here <br><br>content here...</span></font></span>
</div>
</div>
<div class="clear">
</div>
</div>
</div>
</div>