Internet Explorer 9 not rendering table cells properly

后端 未结 14 2183
借酒劲吻你
借酒劲吻你 2020-11-28 02:18

My website has always run smoothly with IE8, IE7, FF, Chrome and Safari. Now I\'m testing it on IE9 and I\'m experiencing a strange problem: in some pages, some tabular data

14条回答
  •  感动是毒
    2020-11-28 02:52

    I fixed this issue by removing the whitespace:

    var expr = new RegExp('>[ \t\r\n\v\f]*<', 'g');
    var response_html_fixed = data.replace(expr, '><'); //A disgusting hack for ie9. Removes space between open and close  tags
    $('#treegrid-data').replaceWith(response_html_fixed);
    

提交回复
热议问题