gpt4 book ai didi

javascript - JQuery .Load HTML 格式不正确

转载 作者:太空宇宙 更新时间:2023-11-04 08:06:10 26 4
gpt4 key购买 nike

下午 StackOverflow!

我好像有问题。当我使用时:

$("#specificDIV").load("new.html")

HTML 内容被放置到 div 中,但 CSS 和 JS 不起作用并且格式错误。我有 slider 和文字之类的元素,但它们似乎溢出到 div 之外,不像原始字体那样保存完好, slider 甚至无法正常工作。

我试过在 header 中复制与 new.html 中的原始 html 相同的内容,以查看是否必须引用 CSS 和 JS,但仍然没有。我还看到 .load 也被弃用和使用:

$("#specificDIV").on("load","new.html")

并且在第一次尝试时仍然像以前一样崩溃,但现在当我调用它时出现错误:

load Uncaught TypeError: Cannot create property 'guid' on string "new.html"

这让我回到了已弃用的加载函数,这显然不是很酷。

如何解决非格式化 .load() 问题和 .on() guid 错误? 无论如何,感谢您阅读到这里为止的高级内容。

编辑:这是一些正在发生的事情的截图。

What's happening right now

eWhat should be happening...

最佳答案

两项:

$("#specificDIV").on("load", "new.html") doesn't work.

也不应该。这实际上是在说“当 $("#specificDIV") 收到 'load' event 时执行字符串 "new.html"。混淆是因为 JQuery 有两个 .load() 方法。上面的 .on() 样式替换了旧的 .load() 样式。

您想要使用其他 .load() 方法,这很好。但是,jQuery 文档说:

jQuery uses the browser's .innerHTML property to parse the retrieved document and insert it into the current document. During this process, browsers often filter elements from the document such as <html>, <title>, or <head> elements. As a result, the elements retrieved by .load() may not be exactly the same as if the document were retrieved directly by the browser.

您的 CSS 和 JS 是否在您检索到的文件中的 head 元素内?如果是这样,将它们移出 <head>

关于javascript - JQuery .Load HTML 格式不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46612533/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com