首页 \ 问答 \ 在鼠标悬停或调整浏览器大小之前,内容不会加载(Content Does Not Load Until Mouse Hover or Resizing Browser)

在鼠标悬停或调整浏览器大小之前,内容不会加载(Content Does Not Load Until Mouse Hover or Resizing Browser)

我正在构建一个使用大量JavaScript的Wordpress网站,我怀疑一些代码干扰了加载内容。 该网站有时加载很好,但有时只显示图像,但文本内容不显示。 只有当我将鼠标悬停在文本所在的位置或调整浏览器大小时才会执行此操作。 我发布了一个代码,但我甚至不确定要发布哪个部分。

这是该网站的链接:

http://paraboladesignstudio.ipage.com/yahaira

我很感激任何线索。


I'm building a Wordpress site that uses a lot of javascript, and I suspect some of the code is interfering with loading the content. The site sometimes loads fine, but sometimes only the images show up, but the text content does not. It does only when I hover over where the text is supposed to be, or resize the browser. I'd post a code, but I'm not even sure which part to post.

This is a link to the site:

http://paraboladesignstudio.ipage.com/yahaira

I'd appreciate any leads.


原文:https://stackoverflow.com/questions/22493200
更新时间:2024-05-03 22:05

最满意答案

您使用<p:outputPanel id="graphView"> alter for <div id="graphView">

实际上, <p:outputPanel在客户端中呈现div标记。


You use <p:outputPanel id="graphView"> alter for <div id="graphView">.

In fact, <p:outputPanel render in clientside a div tag.

相关问答

更多
  • 相关: IE8和Primefaces p:selectOneMenu在表格中有很多p:selectOneMenu时行为异常 问题是PrimeFaces依赖于visibility:hidden以进行大量的维度计算。 当隐形组件超出页面边界时,IE不会按预期计算尺寸。 我没有详细介绍PrimeFaces渲染引擎,但只是激活始终滚动解决了问题: body { overflow-y:scroll; } 这回答了为什么在使用框架集时经常看到问题(更少的地方)或为什么最大化浏览器有助于解决问题的问题。 Related ...
  • 您有三种方法可以解决此问题: 将prependId="false"添加到您的form , 在引用中加入表单标识: update=":register_edit_student:updateStudent"或 将您的面板移动到表单元素之外。 注意:第一个选项应该很少使用,并且已知会导致普通JSF出现问题。 You have three options to solve this: add prependId="false" to your form, Prepend the form id in your r ...
  • 哦,我找到了解决方案! 我不知道这是不是最好的,但它在这里。 我已经把位置:固定在primefaces自动完成的panelStyle属性上,问题解决了。 我使用Chrome的F12进行了检查,并意识到面板是相对的 。 我认为这个配置混淆了与谁有关的自动完成组件,导致了错误。 好吧,我花了几个小时寻找它,10分钟后在这里发布,我找到了一个解决方案。 这很奇怪。 无论如何,谢谢! Oh, I've found the solution! I don't know if it's the best one but ...
  • 未显示自动完成的原因是inplace没有像inputText那样获得其标签。 添加label =“TheLabel”解决了这个问题。