Jquery调整页面容器表的大小
我有一个 HTML 页面,其中有许多嵌套表,例如页眉表和内容表以及页脚表,每个表都有一些子表,
问题是我无法访问表来为其提供 ID 或类,我只能将 JavaScript 或 CSS 文件附加到页面(因为它基于 oracle 门户)页面是全宽,所有表格均采用 100% 宽度,
我想将表格(仅限父级)大小重新调整为 1020px 宽度,无需使用 jQuery 或 CSS 接触这些表格。
有什么建议吗?
I have an HTML page that has many nested tables, for example table for header and table for content and another for footer, and each table has some child tables
the problems is that I don't have access to tables to give them IDs or Classes, I can only attach JavaScript or CSS file to the page (because it's based on oracle portal) the page is full width, all tables take 100% width,
I want to re-size the tables ( the parents only) to be 1020px width, without touching those tables on with jQuery or CSS.
Any suggestion ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
`$('body > table')' 应该给你直接的表子项
`$('body > table')' should give you the immediate table children