因此,我正在开发第一个 serious 网站。 我想执行以下方案, 但我需要指导和建议。 在我网页上有一个按钮 < code> lt; input type='submit' > 。 当用户点击它时, 我希望它打开一些 HTML 内容, 这些内容将在所有页面内容之上显示( 位于中央, 但是目前我并不关心这个细节 ) 。 它应该与脸书上的照片查看方式非常相似。 当用户点击照片缩略图时, 照片会在所有页面内容上方和上方打开 。
Now, I ve implemented this already, but I think that my approach is not recommendable, as it looks a bit clumsy to me, especially when I think about the maintenance of the site:
I added a <div>
as the last element to the <body>
; it is positioned absolutely and collapsed and serves as a container. When the button is clicked, that <div>
is filled with the content and the state is changed from collapsed to visible.
如果有人愿意分享实现这一效果和看法所使用的“标准”方法,我将非常感激。我想AJAX和jQuery应该为此大量使用(我在前面描述的设计中使用纯JavaScript)。我正在寻找一些代码样本和资源。非常感谢。