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.
我希望能够显示数据库中的文本,但仅在显示 div 时。这可能吗。
这里没什么可说的,但这当然是可能的。
如果可以使用 JQuery,一种明显的方法是:
if ( $("#someDiv").is(":visible") ){ //show text from database }
另一种服务器端方法(asp.net web 表单)是创建div runat="server"并检查可见性属性。
div
runat="server"
<div id="someDiv" runat="server"></div> if(someDiv.Visible == true) { //show text }