Table of Contents
回复讨论(解决方案)
Home Web Front-end HTML Tutorial IE无法加载到外部CSS样式, 用360浏览器就可以,上CSS引用代码[急]_html/css_WEB-ITnose

IE无法加载到外部CSS样式, 用360浏览器就可以,上CSS引用代码[急]_html/css_WEB-ITnose

Jun 21, 2016 am 09:25 AM
css code load external

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>    <title>新用户注册页面</title>    <link  rel="stylesheet" href="css/register.css" type="css/text"/>    <script type="text/javascript" src="js/jquery-1.8.3.js"></script>	<script>      		//邮箱获取焦点时		function emailGo(){			var email = $("#email").val();				if(email == ""){					$("#emailId").html("请输入您常用的电子邮箱");				}		}		//邮箱失去焦点时		function emailOut(){				var email = $("#email").val();				if(email==""){					$("#emailId").html("电子邮箱不能为空");					return false;				}				if(email.indexOf("@")==-1){					$("#emailId").html("Email格式不正确");					return false;				}				if(email.indexOf(".")==-1){					$("#emailId").html("Email格式不正确");					return false;				}				$("#emailId").html("");				return true;		}		//用户名						$(document).ready(function(){			//保密邮箱			$("#email").focus(emailGo);			$("#email").blur(emailOut);			var a =	$("#userNameId").html();			alert(a);		});	</script>    <script type="text/javascript" src="js/register.js"></script></head><body><div id="header"><img src="/static/imghw/default1.png"  data-src="images/register_logo.gif"  class="lazy"   alt="logo"/></div><div id="main">    <table width="100%" border="0" cellspacing="0" cellpadding="0">        <tr>            <td class="bg bg_top_left"></td>            <td class="bg_top"></td>            <td class="bg bg_top_right"></td>        </tr>        <tr>            <td class="bg_left"></td>            <td class="content">                <form id="registerForm" action="" method="post" name="myform">                    <dl>                        <dt>通行证用户名:</dt>                        <dd><input type="text" id="userName" class="inputs userWidth"/> @163.com</dd>                        <div id="userNameId">啊啊</div>                    </dl>                    <dl>                        <dt>登录密码:</dt>                        <dd><input type="password" id="pwd" class="inputs"/></dd>                        <div id="pwdId"></div>                    </dl>                    <dl>                        <dt>重复登录密码:</dt>                        <dd><input type="password" id="repwd" class="inputs"/></dd>                        <div id="repwdId"></div>                    </dl>                    <dl>                        <dt>性别:</dt>                        <dd><input name="sex" type="radio" value="" checked="checked"/>男 <input name="sex" type="radio" value="" />女 </dd>                    </dl>                    <dl>                        <dt>真实姓名:</dt>                        <dd><input type="text" id="realName" class="inputs" /></dd>                    </dl>                    <dl>                        <dt>昵称:</dt>                        <dd><input type="text" id="nickName" class="inputs"/></dd>                        <div id="nickNameId"></div>                    </dl>                    <dl>                        <dt>关联手机号:</dt>                        <dd><input type="text" id="tel" class="inputs"/></dd>                        <div id="telId"></div>                    </dl>                    <dl>                        <dt>保密邮箱:</dt>                        <dd><input type="text" id="email" class="inputs"/></dd>                        <div id="emailId"></div>                    </dl>                    <dl>                        <dt></dt>                        <dd><input name=" " type="image" src="images/button.gif"/></dd>                    </dl>                </form>            </td>            <td class="bg_right"></td>        </tr>        <tr>            <td class="bg bg_end_left"></td>            <td class="bg_end"></td>            <td class="bg bg_end_right"></td>        </tr>    </table></div></body></html>
Copy after login



下面是CSS

@charset "utf-8";/* CSS Document */body,dl,dt,dd,div,form {padding:0;margin:0;}#header,#main{	width:650px;	margin:0 auto;	}.bg{	background-image:url(../images/register_bg.gif);	background-repeat:no-repeat;	width:6px;	height:6px;	}	.bg_top_left{		background-position:0px 0px;		}	.bg_top_right{		background-position:0px -6px;		}	.bg_end_left{		background-position:0px -12px;		}	.bg_end_right{		background-position:0px -18px;		}	.bg_top{		border-top:solid 1px #666666;		}	.bg_end{		border-bottom:solid 1px #666666;		}	.bg_left{		border-left:solid 1px #666666;		}	.bg_right{		border-right:solid 1px #666666;		}.content{	padding:10px;	}	.inputs{		border:solid 1px #a4c8e0;		width:150px;		height:15px;	}		.userWidth{		width:110px;		}	.content div{		float:left;		font-size:12px;		color:#000;		}	dl{		clear:both;		}	dt,dd{		float:left;		}	dt{		width:130px;		text-align:right;		font-size:14px;		height:30px;		line-height:25px;		}	dd{		font-size:12px;		color:#666666;		width:180px;		}/*当鼠标放到文本框时,提示文本的样式*/.import_prompt{	border:solid 1px #ffcd00;	background-color:#ffffda;	padding-left:5px;	padding-right:5px;	line-height:20px;	}/*当文本框内容不符合要求时,提示文本的样式*/.error_prompt{	border:solid 1px #ff3300;	background-color:#fff2e5;	background-image:url(../images/li_err.gif);	background-repeat:no-repeat;	background-position:5px 2px;	padding:2px 5px 0px 25px;	line-height:20px;	}/*当文本框内容输入正确时,提示文本的样式*/.ok_prompt{	border:solid 1px #01be00;	background-color:#e6fee4;	background-image:url(../images/li_ok.gif);	background-repeat:no-repeat;	background-position:5px 2px;	padding:2px 5px 0px 25px;	line-height:20px;	}
Copy after login

保证路径是正确的 , 不知道为啥?


回复讨论(解决方案)

<link  rel="stylesheet" href="css/register.css" />
Copy after login

<link  rel="stylesheet" href="css/register.css" type="text/css"/>
Copy after login
Copy after login


type的类型写反了。

<link  rel="stylesheet" href="css/register.css" type="text/css"/>
Copy after login
Copy after login


type的类型写反了。



我试过 , 还是没有用呢  

去掉也不管用吗?

那就不知道你哪里出的错了,我自己试了下,是没有问题的~~

去掉也不管用吗?

那就不知道你哪里出的错了,我自己试了下,是没有问题的~~



我想可能是浏览器的问题吧  

浏览器还不至于出这么低级的问题的,先从自己的代码找起吧。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does placeholder mean in vue What does placeholder mean in vue May 07, 2024 am 09:57 AM

In Vue.js, the placeholder attribute specifies the placeholder text of the input element, which is displayed when the user has not entered content, provides input tips or examples, and improves form accessibility. Its usage is to set the placeholder attribute on the input element and customize the appearance using CSS. Best practices include being relevant to the input, being short and clear, avoiding default text, and considering accessibility.

What does span mean in js What does span mean in js May 06, 2024 am 11:42 AM

The span tag can add styles, attributes, or behaviors to text. It is used to: add styles, such as color and font size. Set attributes such as id, class, etc. Associated behaviors such as clicks, hovers, etc. Mark text for further processing or citation.

What does rem mean in js What does rem mean in js May 06, 2024 am 11:30 AM

REM in CSS is a relative unit relative to the font size of the root element (html). It has the following characteristics: relative to the root element font size, not affected by the parent element. When the root element's font size changes, elements using REM will adjust accordingly. Can be used with any CSS property. Advantages of using REM include: Responsiveness: Keep text readable on different devices and screen sizes. Consistency: Make sure font sizes are consistent throughout your website. Scalability: Easily change the global font size by adjusting the root element font size.

Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Jun 12, 2024 pm 08:38 PM

Since the launch of ChatGLM-6B on March 14, 2023, the GLM series models have received widespread attention and recognition. Especially after ChatGLM3-6B was open sourced, developers are full of expectations for the fourth-generation model launched by Zhipu AI. This expectation has finally been fully satisfied with the release of GLM-4-9B. The birth of GLM-4-9B In order to give small models (10B and below) more powerful capabilities, the GLM technical team launched this new fourth-generation GLM series open source model: GLM-4-9B after nearly half a year of exploration. This model greatly compresses the model size while ensuring accuracy, and has faster inference speed and higher efficiency. The GLM technical team’s exploration has not

How to introduce images into vue How to introduce images into vue May 02, 2024 pm 10:48 PM

There are five ways to introduce images in Vue: through URL, require function, static file, v-bind directive and CSS background image. Dynamic images can be handled in Vue's computed properties or listeners, and bundled tools can be used to optimize image loading. Make sure the path is correct otherwise a loading error will appear.

What is node in js What is node in js May 07, 2024 pm 09:06 PM

Nodes are entities in the JavaScript DOM that represent HTML elements. They represent a specific element in the page and can be used to access and manipulate that element. Common node types include element nodes, text nodes, comment nodes, and document nodes. Through DOM methods such as getElementById(), you can access nodes and operate on them, including modifying properties, adding/removing child nodes, inserting/replacing nodes, and cloning nodes. Node traversal helps navigate within the DOM structure. Nodes are useful for dynamically creating page content, event handling, animation, and data binding.

What language is the browser plug-in written in? What language is the browser plug-in written in? May 08, 2024 pm 09:36 PM

Browser plug-ins are usually written in the following languages: Front-end languages: JavaScript, HTML, CSS Back-end languages: C++, Rust, WebAssembly Other languages: Python, Java

How to set unknown attributes in vscode vscode method to set unknown attributes How to set unknown attributes in vscode vscode method to set unknown attributes May 09, 2024 pm 02:43 PM

1. First, open the settings icon in the lower left corner and click the settings option. 2. Then, find the CSS column in the jumped window. 3. Finally, change the drop-down option in the unknownproperties menu to the error button.

See all articles