使用 jQuery 的内联标签不显示在 ie 上
我在渲染内联标记范围的内容时遇到问题。如果我使用 div 而不是 span,则会显示内容。
for (all objects in array) {
var A = jQuery("<img src='xyz'>")
if(some condition) {
var b = jQuery("<span class='X'>");
b.append(A);
A = b;
}
A.addClass(random);
} // for ends
在 Ie8 n 9 中,不显示条件为 true 的对象。而它在 mozilla、chrome 和 safari 中显示。
任何指示都会非常有帮助。
I am facing problem rendering the contents of inline tag span. If i use div instead of span the contents are shown.
for (all objects in array) {
var A = jQuery("<img src='xyz'>")
if(some condition) {
var b = jQuery("<span class='X'>");
b.append(A);
A = b;
}
A.addClass(random);
} // for ends
In Ie8 n 9 the object which has condition true is not displayed. whereas it is displayed in mozilla, chrome, and safari.
any pointers will be really helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论