Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以使用 IE 条件语句来提供 CSS 文件,但是否可以对 html 执行相同的操作。例如,当您访问一个网站时,它会识别出您使用的是 IE 7,因此它会为您提供不同的 html 文件
由于首先调用 HTML,因此您需要在服务器端执行此操作。使用 PHP,您需要if($_SERVER['HTTP_USER_AGENT'] === 'MSIE 7'){ //then... }
if($_SERVER['HTTP_USER_AGENT'] === 'MSIE 7'){ //then... }