我想点击锚标签时弹出一个弹出窗口。我也希望背景隐藏或模糊。
这是我的代码:
<a class="button fifteen"><strong>Visit Our Website</strong></a>
答案 0 :(得分:3)
请尝试以下操作:(Reference)
<a href="javascript:void(0);" onclick="window.open(url, '_blank', 'width=300,height=250');">test</a>
有关点击弹出工作的功能,请尝试以下操作:
<a href="yourLink" target="popup" onclick="window.open('yourLink','popup','width=600,height=600,scrollbars=no,resizable=no'); return false;">
Open Popup
</a>
答案 1 :(得分:1)
使用此代码,您将获得弹出窗口。
<a class="button fifteen" onclick="alert('hello!');return false;"><strong>Visit Our Website</strong></a>
&#13;
可能不是你需要的,试着在你的问题中更加具体。