隐藏jquery自动填充建议

时间:2016-06-05 12:51:48

标签: jquery html jquery-autocomplete frameset

在框架集中使用jquery自动完成时,建议列表隐藏在较低框架后面。 使用通常的Html选择字段时 - 值显示在下部框架的顶部(应该如此)。Html select - OK jquery autocomplete - hidden - not OK

通过框架在这个项目中强制使用框架集......我们无能为力。

1 个答案:

答案 0 :(得分:1)

我建议交配两件事,

a)增加你的框架的高度,比如可能是至少200px

b)在与自动完成相同的页面中设置以下css:

def html2text( rawHtml : String ) : String = {

    val htmlDoc = Jsoup.parseBodyFragment( rawHtml, "/" )
    htmlDoc.select("br").append("\\nl")
    htmlDoc.select("div").append("\\nl")
    htmlDoc.select("p").prepend("\\nl\\nl")
    htmlDoc.select("p").append("\\nl\\nl")

    org.jsoup.parser.Parser.unescapeEntities(
        Jsoup.clean(
          htmlDoc.html(),
          "",
          Whitelist.none(),
          new org.jsoup.nodes.Document.OutputSettings().prettyPrint(true)
        ),false
    ).
    replaceAll("\\\\nl", "\n").
    replaceAll("\r","").
    replaceAll("\n\\s+\n","\n").
    replaceAll("\n\n+","\n\n").     
    trim()      
}

希望这会有所帮助!!