Javascript DOM 无需完整框架即可就绪

发布于 2024-08-30 15:01:37 字数 186 浏览 7 评论 0原文

有谁知道一个好的 javascript DOM 就绪库,我可以在不加载整个框架的情况下使用它?我在 google code 上找到了一个似乎有效的库,但该库是在 2008 年发布的,我找不到有关最新跨浏览器支持的任何确认信息。

Does anyone know of a good javascript DOM ready library that I can use without loading an entire framework? I found one on google code that seems to work, but the library was posted in 2008 and I can't find any confirmation on up-to-date cross browser support.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

◇流星雨 2024-09-06 15:01:37

David Mark 的“我的库”具有“DOM 就绪”功能:

http://www.cinsoft.net/mylib .html

David 热衷于反框架、反糟糕的 javascript 实践,因此它应该是高质量的代码。

David Mark's "My Library" has a "DOM ready" functionality:

http://www.cinsoft.net/mylib.html

David is avid anti-framework, anti-bad-javascript-practice so it should be good quality code.

原谅我要高飞 2024-09-06 15:01:37

只需在结束正文标记之前执行此操作:

<html>
<script>
function runAfterLoad() {
}
... lots of stuff
</script>
<body>

... lots of stuff

<script>runAfterLoad();</script></body>
</html>

Just do this right before the closing body tag:

<html>
<script>
function runAfterLoad() {
}
... lots of stuff
</script>
<body>

... lots of stuff

<script>runAfterLoad();</script></body>
</html>
予囚 2024-09-06 15:01:37

查看 Dean Edwards 的 base2。它包含修补浏览器差异并根据标准提供良好一致的界面所需的最少量代码。 gzip 压缩版本只有 6k。

Checkout Dean Edwards' base2. It contains a minimal amount of code necessary to patch up browser differences and provide nice consistent interface as per the standards. The gzipped version is only 6k.

始终不够 2024-09-06 15:01:37

使用 ded 的 domready

Use ded's domready

貪欢 2024-09-06 15:01:37

看来最安全的选择确实是使用 javascript 框架。我能够找到一些小型 DOMready 库 - 但没有任何最近编写的内容或声称已确认可以与最新的浏览器版本一起使用。

It seems that the safest bet is indeed to use a javascript framework. I was able to find some small DOMready libraries - but nothing written recently or claiming to be confirmed working with the most current browser releases.

卸妝后依然美 2024-09-06 15:01:37

请查看这个简单的函数dom准备函数

它已经在ie 8,firefox,chrome中进行了测试和野生动物园。

并检查这个答案 javascript domready?

please check out this simple function dom ready function

it has been tested in ie 8 , firefox, chrome and safari .

and check this answer javascript domready?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文