js兼容火狐的问题
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!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" />
<style type="text/css">
body {
overflow:auto;
}
#showpic {
width:400px;
height:400px;
background-color:#CCCCCC;
}
#showpic img {
width:400px;
height:400px;
}
</style>
<title>无标题文档</title>
<script src="" type="text/javascript" language="javascript">
function $(ider){return document.getElementById(ider);}
var obj1;
obj1 = document.createElement("div");
//obj1.id
function newwind(){
window.open("http://www.baidu.com/","","width=300px,height=400px");
}
function showpic(whichpic){
var iex = navigator.userAgent;
if(iex.indexOf("MSIE")>0){
var source = whichpic.getAttribute("href");
var obj2 = $("showpic").document.getElementsByTagName("img");
//alert(obj2+"全体请注意,美女来了饿!");
//alert(document.body.childNodes.length);
obj2[0].setAttribute("src",source);
var titleva = whichpic.getAttribute("title");
var obj3 = $("values");
obj3.childNodes[0].nodeValue = titleva;
//alert(obj3.childNodes[0].nodeValue);
}
if(iex.indexOf("Firefox")>0){
window.open("http://www.baidu.com","");
alert(navigator.userAgent);
}
}
</script>
</head>
<body onmouseup = "movice();">
<ul>
<li><a href="506b2d1bf95a4b0542a9ad44.jpg" title="first img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="c0172c947a25e007d1135ebc.jpg" title="second img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="qwe.jpg" target="_blank" title="third img!" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="sdf.jpg" target="_blank" title="forth img!" onclick="showpic(this);return false; ">第一个图片</a></li>
</ul>
<div id="values">choice element value!</div>
<div id="showpic"><img src="sdf.jpg"/></div>
</body>
</html>
这段代码在IE中可以运行,但在火狐中无法运行,请高手帮帮,我是个小菜鸟,谢谢大家了! 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
overflow:auto;
}
#showpic {
width:400px;
height:400px;
background-color:#CCCCCC;
}
#showpic img {
width:400px;
height:400px;
}
</style>
<title>无标题文档</title>
<script src="" type="text/javascript" language="javascript">
function $(ider){return document.getElementById(ider);}
var obj1;
obj1 = document.createElement("div");
//obj1.id
function newwind(){
window.open("http://www.baidu.com/","","width=300px,height=400px");
}
function showpic(whichpic){
var iex = navigator.userAgent;
if(iex.indexOf("MSIE")>0){
var source = whichpic.getAttribute("href");
var obj2 = $("showpic").document.getElementsByTagName("img");
//alert(obj2+"全体请注意,美女来了饿!");
//alert(document.body.childNodes.length);
obj2[0].setAttribute("src",source);
var titleva = whichpic.getAttribute("title");
var obj3 = $("values");
obj3.childNodes[0].nodeValue = titleva;
//alert(obj3.childNodes[0].nodeValue);
}
if(iex.indexOf("Firefox")>0){
window.open("http://www.baidu.com","");
alert(navigator.userAgent);
}
}
</script>
</head>
<body onmouseup = "movice();">
<ul>
<li><a href="506b2d1bf95a4b0542a9ad44.jpg" title="first img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="c0172c947a25e007d1135ebc.jpg" title="second img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="qwe.jpg" target="_blank" title="third img!" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="sdf.jpg" target="_blank" title="forth img!" onclick="showpic(this);return false; ">第一个图片</a></li>
</ul>
<div id="values">choice element value!</div>
<div id="showpic"><img src="sdf.jpg"/></div>
</body>
</html>
这段代码在IE中可以运行,但在火狐中无法运行,请高手帮帮,我是个小菜鸟,谢谢大家了! 展开
2个回答
展开全部
给你改了一下 看看对不对
<script src="" type="text/javascript" language="javascript">
这个部分改掉了
----------------------------------------
<!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" />
<style type="text/css">
body {
overflow:auto;
}
#showpic {
width:400px;
height:400px;
background-color:#CCCCCC;
}
#showpic img {
width:400px;
height:400px;
}
</style>
<title>无标题文档</title>
<script type="text/javascript" >
function $(ider){return document.getElementById(ider);}
var obj1;
obj1 = document.createElement("div");
//obj1.id
function newwind(){
window.open("http://www.baidu.com/","","width=300px,height=400px");
}
function showpic(whichpic){
var iex = navigator.userAgent;
if(iex.indexOf("MSIE")>0){
var source = whichpic.getAttribute("href");
var obj2 = $("showpic").document.getElementsByTagName("img");
//alert(obj2+"全体请注意,美女来了饿!");
//alert(document.body.childNodes.length);
obj2[0].setAttribute("src",source);
var titleva = whichpic.getAttribute("title");
var obj3 = $("values");
obj3.childNodes[0].nodeValue = titleva;
//alert(obj3.childNodes[0].nodeValue);
}
if(iex.indexOf("Firefox")>0){
window.open("http://www.baidu.com","");
alert(navigator.userAgent);
}
}
</script>
</head>
<body >
<ul>
<li><a href="506b2d1bf95a4b0542a9ad44.jpg" title="first img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="c0172c947a25e007d1135ebc.jpg" title="second img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="qwe.jpg" target="_blank" title="third img!" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="sdf.jpg" target="_blank" title="forth img!" onclick="showpic(this);return false; ">第一个图片</a></li>
</ul>
<div id="values">choice element value!</div>
<div id="showpic"><img src="sdf.jpg"/></div>
</body>
</html>
<script src="" type="text/javascript" language="javascript">
这个部分改掉了
----------------------------------------
<!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" />
<style type="text/css">
body {
overflow:auto;
}
#showpic {
width:400px;
height:400px;
background-color:#CCCCCC;
}
#showpic img {
width:400px;
height:400px;
}
</style>
<title>无标题文档</title>
<script type="text/javascript" >
function $(ider){return document.getElementById(ider);}
var obj1;
obj1 = document.createElement("div");
//obj1.id
function newwind(){
window.open("http://www.baidu.com/","","width=300px,height=400px");
}
function showpic(whichpic){
var iex = navigator.userAgent;
if(iex.indexOf("MSIE")>0){
var source = whichpic.getAttribute("href");
var obj2 = $("showpic").document.getElementsByTagName("img");
//alert(obj2+"全体请注意,美女来了饿!");
//alert(document.body.childNodes.length);
obj2[0].setAttribute("src",source);
var titleva = whichpic.getAttribute("title");
var obj3 = $("values");
obj3.childNodes[0].nodeValue = titleva;
//alert(obj3.childNodes[0].nodeValue);
}
if(iex.indexOf("Firefox")>0){
window.open("http://www.baidu.com","");
alert(navigator.userAgent);
}
}
</script>
</head>
<body >
<ul>
<li><a href="506b2d1bf95a4b0542a9ad44.jpg" title="first img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="c0172c947a25e007d1135ebc.jpg" title="second img!" target="_blank" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="qwe.jpg" target="_blank" title="third img!" onclick="showpic(this);return false; ">第一个图片</a></li>
<li><a href="sdf.jpg" target="_blank" title="forth img!" onclick="showpic(this);return false; ">第一个图片</a></li>
</ul>
<div id="values">choice element value!</div>
<div id="showpic"><img src="sdf.jpg"/></div>
</body>
</html>
微测检测5.10
2023-05-10 广告
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇...
点击进入详情页
本回答由微测检测5.10提供
展开全部
尊敬的用户,您好!很高兴为您答疑。
走读了一下您的代码,发现在js的起止符上存在问题,导致您的代码并未正常加载。<script src="" type="text/javascript" language="javascript">中,src表示从外部引入js代码,此时,无论您后面跟随什么代码,都会被视为无效。您需要改写成:
<scripttype="text/javascript" language="javascript">
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
走读了一下您的代码,发现在js的起止符上存在问题,导致您的代码并未正常加载。<script src="" type="text/javascript" language="javascript">中,src表示从外部引入js代码,此时,无论您后面跟随什么代码,都会被视为无效。您需要改写成:
<scripttype="text/javascript" language="javascript">
希望我的回答对您有所帮助,如有疑问,欢迎继续咨询我们。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询