Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击按钮时,如何在整个页面上显示图像?(意味着我在页面上有多个控件,并希望在所有控件上显示此图像)
您可以在按钮单击事件中编写此行
ClientScript.RegisterClientScriptBlock(GetType(), "key", "javascript: document.body.background = 'Untitled.jpg'; document.body.style.backgroundRepeat = 'no-repeat'; document.body.style.backgroundPosition = '300px 300px'; ", true);
您正在寻找模态窗口,有一些很棒的 jQuery 插件。我真的很喜欢一个叫Reveal的。
自己做。设置一个“位置:绝对”和一个高于 div 上其他元素的“z-index”,并触发它使用 javascript 显示/隐藏,你应该没问题。