根据body的ID调用onload函数
我想在页面加载时初始化一些元素。在不同的页面上,需要初始化不同的元素,但是,我想将所有元素保留在一个文件中。所以我想根据页面的 ID 将不同的函数附加到 body.onload
上。
谁能告诉我这是否可能?如果是,请解释如何做到这一点。
I would like to initialize a few elements on load of the page. On different pages, different elements need to be initialized, however, I would like keep all if it in a single file. So I would like to attach a different function to the body.onload
, based on the ID of the page.
Can anyone please tell me if that is possible? If it is, please explain how it can be done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对于此类事情,您应该使用 CSS 类而不是 ID。
You should rather use CSS classes than IDs for this type of thing.
一种可能的模式是这样的:
然后,在您的各个页面上:
One possible pattern would be something like this:
Then, on your individual pages:
如果您使用 PHP,请首先使 pageid 可用于 JavaScript
对于其他服务器端语言,请使用类似的内容。这应该在头部部分得到呼应。这样 body onload 就会让这个变量处于活动状态。
然后,您可以使用它来选择需要基于 pageid 执行的语句集,可以使用 onload 事件处理程序内的
switch_case
或使用js 对象
(如其他中提到的)答案。If you are using PHP, first make the pageid available to JavaScript
For other server-side languages, use something similar. This should be echoed in the head part. So that body onload will have this variable alive.
Then you can use this to select the set of statements that needs to be executed based on pageid either using a
switch_case
inside onload event handler or using ajs object
as mentioned in other answers.您应该创建一个文件,在其中可以放置对象文字,其中的键引用 body 标记中的每个标识符。并根据当前的 body id 调用它们。
例如
You should create a file in which you could put object literal with keys referring to each identifiers that you have in body tag. And calls them depending of current body id.
For example
尝试使用:
Try with: