vbscript 隐藏占位符 - 简单的东西,但这里有一些非常有用的东西

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 隐藏占位符 - 简单的东西,但这里有一些非常有用的东西相关的知识,希望对你有一定的参考价值。

// Hide a placeholder if it is empty

If Control.controls.count = 0 then
    If value.trim.toLower.indexof("[add content here]") > -1 Or StripHTML(HttpUtility.HTMLDecode(value).trim).length = 0 then
        Control.visible = false
    End If
End If


// Hide a placeholder if it is empty, also adding in a check for images.

If Control.controls.count = 0 then
        If value.indexof("<img") = -1 then
                If StripHTML(HttpUtility.HTMLDecode(value).trim).length = 0 then
                        Control.visible = false
                Else
                        If value.trim.toLower.indexof("[add article image here]") > -1 then
                        Control.visible = false
                        End If
                  
            End If
        End If
End If


// Hide another div, if a placeholder is empty

If Control.controls.count = 0 then
    If value.trim.toLower.indexof("[add content here]") > -1 Or StripHTML(HttpUtility.HTMLDecode(value).trim).length = 0 then
        Div_Id.visible = false
    End If
End If


// Add attributes to another div / element based on a placeholder being hidden (e.g. switching a class)

If Control.controls.count = 0 then
    If value.trim.toLower.indexof("[add content here]") > -1 Or StripHTML(HttpUtility.HTMLDecode(value).trim).length = 0 then
        Control.visible = false
        
        Div_Id.attributes("class")= mainColumn.attributes("class") & " sys_fullWidth"
        
    End If
End If


// Other attribute examples;

Div_Id.attributes("class")= "sys_stickyFace"

Div_Id.attributes("style")= "position:naughty;"

以上是关于vbscript 隐藏占位符 - 简单的东西,但这里有一些非常有用的东西的主要内容,如果未能解决你的问题,请参考以下文章

CSS在打印时隐藏占位符[重复]

占位符 z-index Firefox 问题

如何在按钮单击事件上隐藏占位符?

如何隐藏搜索框和占位符?

Spring Boot 表单;隐藏路径值并显示占位符

html 用占位符显示和隐藏标记