加载带有动态内容的 html 片段
首先,在 Jquery 中使用 load() 加载具有动态内容的 html Frag 是一个好方法吗?
如果是,当您在JSP环境下使用load()从服务器加载html片段时,您如何使用css设计页面?您是在jsp内的html片段中插入css语法还是等到将其加载到客户端? 为了更多地澄清我试图加载的 html 片段是收件箱页面,其中包含来自朋友的消息列表,就像链接或 Facebook 一样。任何不同的建议也将不胜感激。
First of all In Jquery loading html frag with dynamic content using load() is it a good aproach?
If yes when you load html fragment with load() from the server under JSP environment,How do you style the page with css?do you insert css syntax in the html frag inside jsp or you wait until you load it to the client side?
To clarify more the html fragment i am trying to load is inbox page with a list of messages from friends just like linked-in or facebook.Any different advice will also be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1)对于简短、简单的HTML,我不认为使用jQuery的load方法有什么问题。对于更深入的数据加载,我建议研究 jQuery.getJSON() 方法,然后解析该 jSON 对象来构建 HTML
2) 就 CSS 而言,不需要执行任何内联 CSS。相反,只需为您的片段提供一个 ID 或类,并在外部样式表中定义其属性即可。
1) For short, simple HTML, I don't think there's anything wrong with using jQuery's load method. For more in depth data loading, I would suggest looking into the jQuery.getJSON() method, and then parsing that jSON object to build your HTML
2) As far as the CSS, there is no need to do any inline CSS. Instead, just give your fragment an ID or a class, and define the attributes for that in an external stylesheet.