Is there a way to disable compatibility mode
The IE number on your system is the IE number in the 360 compatibility mode.
As for disabling compatibility mode, this is a pitfall. 360 official documents give a way to specify meta information:
<meta name="renderer" content="webkit">
Browser kernel control tag meta description
But unfortunately, after my testing and observing other websites, I found that this meta is of no practical use (even on 360’s own browser).
Set to enable the speed mode by default when opening a webpage, and follow the <head>后加上<meta content="webkit" name="renderer" />,注意一定是要紧跟<head>note, otherwise it will not work
<head>
<meta content="webkit" name="renderer" />
Generally, it is consistent with the IE kernel version that comes with your system
The IE number on your system is the IE number in the 360 compatibility mode.
As for disabling compatibility mode, this is a pitfall. 360 official documents give a way to specify meta information:
Browser kernel control tag meta description
But unfortunately, after my testing and observing other websites, I found that this meta is of no practical use (even on 360’s own browser).
Set to enable the speed mode by default when opening a webpage, and follow the
<head>
后加上<meta content="webkit" name="renderer" />
,注意一定是要紧跟<head>
note, otherwise it will not workGenerally, it is consistent with the IE kernel version that comes with your system