加龙

加龙加香不加价
随笔 - 133, 评论 - 1344 , 引用 - 51

IE和Firefox下CSS和Javascript的区别

1、浏览器事件的捕捉

在IE下有一个全局的window.event,当事件触发后可以直接使用,但是在fireFox下没有这个东西,当调用触发事件调用一个函数时,如果这个函数没有形参,那么firefox会默认的把event(事件)传进去,但是有参数时就不行啦,所以解决的办法是,自己手动传一个event进去,这样就ok了,具体代码如下:

下面两个函数,都是响应鼠标onclick时触发的动作,第一个在ie下使用正常,但是在firefox下却有问题,改成第二个那样使用,就没有问题了,注意调用方法的区别

view plaincopy to clipboardprint?
<html>
<head>
<title>test</title>
<script language="javascript">
function testevent()
{
window.alert(window.event.target.id);
return;
}
</script>
</head>
</body>
<a href="#" onclick="testevent()" id="alink">testevent</a>
</body>
</html>
<html>
<head>
<title>test</title>
<script language="javascript">
function testevent()
{
window.alert(window.event.target.id);
return;
}
</script>
</head>
</body>
<a href="#" onclick="testevent()" id="alink">testevent</a>
</body>
</html>


view plaincopy to clipboardprint?
<html>
<head>
<title>test1</title>
<script language="javascript">
function testevent(evt)
{
window.alert(evt.target.id);
return;
}
</script>
</head>
</body>
<a href="#" onclick="testevent(event)" id="alink">testevent</a>
</body>
</html>
<html>
<head>
<title>test1</title>
<script language="javascript">
function testevent(evt)
{
window.alert(evt.target.id);
return;
}
</script>
</head>
</body>
<a href="#" onclick="testevent(event)" id="alink">testevent</a>
</body>
</html>


其实event对象在ie以及firefox还有很多不同的特性,比如clienx,pagex等,但是由于在现在流行使用的js框架prototype中解决了很多这些问题,所以如果是在基于prototype下的开发,这些问题可以考虑得少一些了,只是上面提到的这个捕获问题,prototype中并没有完善的解决,所以单独列出来,下面提及的关于js的也都只列出prototype中未解决的

2、关于透明度的设置

为了达到给层设置半透明的效果时,在IE和firefox下也有所不同,IE下,style的filter属性有Alpha值可供使用,而firefox下没有Alpha值,所以得指定style的MozOpacity,代码见下:

<STYLE>
filter: Alpha(opacity=10); /*IE*/
-moz-opacity:.1; /*老版本FireFox 1.0 以前*/
opacity:0.1; /*新版本FireFox*/
</STYLE>

view plaincopy to clipboardprint?
<script language="javascript">
//设置一个id为screen的div的透明度为45%,在IE下:
document.getElementById(screen).style.filter=Alpha(Opacity=45);

//而在firefox下:
document.getElementById(screen).style.MozOpacity=0.45;
</script>
<script language="javascript">
//设置一个id为screen的div的透明度为45%,在IE下:
document.getElementById(screen).style.filter=Alpha(Opacity=45);

//而在firefox下:
document.getElementById(screen).style.MozOpacity=0.45;
</script>


3、定位层时的有趣问题

在定位层时,我们的做法是给层的style.left 和 style.top设置位置,但是今天发现了一个很有趣的问题,代码如下:

view plaincopy to clipboardprint?
<script language="javascript">
//给一个id为dialog的层定位
document.getElementById(dialog).left = 100;
document.getElementById(dialog).left = 100;

//问题出现了,在ie下,默认将层的左上角定位在(100px,100px)这个点上
//但是在firefox下却死活都不行,后来发现,原来ie在你没有指定单位的时候
//替你加上了单位“px”,而firefox比较“笨”
//他觉得你没有指定单位,就不给你定位,好了,那么标准的写法应该是这样:

document.getElementById(dialog).left = 100px;
document.getElementById(dialog).left = 100px;

//这样firefox也认了

</script>
<script language="javascript">
//给一个id为dialog的层定位
document.getElementById(dialog).left = 100;
document.getElementById(dialog).left = 100;

//问题出现了,在ie下,默认将层的左上角定位在(100px,100px)这个点上
//但是在firefox下却死活都不行,后来发现,原来ie在你没有指定单位的时候
//替你加上了单位“px”,而firefox比较“笨”
//他觉得你没有指定单位,就不给你定位,好了,那么标准的写法应该是这样:

document.getElementById(dialog).left = 100px;
document.getElementById(dialog).left = 100px;

//这样firefox也认了

</script>


4、PNG透明背景的问题
PNG图片在网站设计中是不可或缺的部分,最大的特点应该在于PNG可以无损压缩,而且还可以设置透明,对于增强网站的图片色彩效果有重要的作用。

但为什么PNG图片却没有GIF和JPG图片的使用来得广泛呢,这个祸因应归属于微软的IE浏览器(Firefox和Opera对PNG支持的比较好,而现在浏览器的主流IE6却无法很好的支持)。不过微软在最近也开始改过自新了,新出的的IE7可以很好的支持PNG,可以想象在未来的网络世界,PNG图片的重要性将会更加凸显。

但在大家还在绝大多数的使用IE6的时候,我们又怎样在IE6的世界去完美使用PNG图片呢(PNG图片的时候最重要的地方在于PNG透明背景图片的运用)。我们应该庆幸我们是幸福的!IE5.5+的AlphaImageLoader滤镜为通向png提供了一个道路,如果他载入的是PNG(Portable Network Graphics)格式,则0%-100%的透明度也被提供。但IE5.0无法支持属性,那只有完全绝望了,不过绝望的只是几个,得到是绝大数,我们应该知足,知足才会常乐。

现在我们将通过Hack和AlphaImageLoader滤镜来实现IE6下的PNG透明背景图片。

先熟悉下滤镜的语法:

view plaincopy to clipboardprint?
filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )

属性:

enabled : 可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true | false
true :  默认值。滤镜激活。
false :  滤镜被禁止。

sizingMethod : 可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。
crop : 剪切图片以适应对象尺寸。
image : 默认值。增大或减小对象的尺寸边界以适应图片的尺寸。
scale : 缩放图片以适应对象的尺寸边界。

src :  必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数,滤镜将不会作用。
filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )

属性:

enabled : 可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true | false
true :  默认值。滤镜激活。
false :  滤镜被禁止。

sizingMethod : 可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。
crop : 剪切图片以适应对象尺寸。
image : 默认值。增大或减小对象的尺寸边界以适应图片的尺寸。
scale : 缩放图片以适应对象的尺寸边界。

src :  必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数,滤镜将不会作用。


Firefox、Opera等完全支持PNG透明图片的浏览器也支持子选择器(>),而IE不识别(包括IE7),所有我们可以通过这来定义Firefox、Opera等浏览器中PNG图片的样式。如下

view plaincopy to clipboardprint?
<script language="javascript>
//给一个id为infoBox的层设置一个透明背景,背景图片是down.png,代码如下
//进行了浏览器判断

if (navigator.appName!="Microsoft Internet Explorer")
{
$(infoBox).style.background="0 url(down.png) no-repeat";
}
else
{
$(infoBox).style.background="0 none no-repeat";
$(infoBox).style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale,src=down.png)";
}

</script>
<script language="javascript>
//给一个id为infoBox的层设置一个透明背景,背景图片是down.png,代码如下
//进行了浏览器判断

if (navigator.appName!="Microsoft Internet Explorer")
{
$(infoBox).style.background="0 url(down.png) no-repeat";
}
else
{
$(infoBox).style.background="0 none no-repeat";
$(infoBox).style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale,src=down.png)";
}

</script>


不过需要注意的一个地方:

使用AlphaImageLoader 后该区域的超链接和按钮会失效,解决的方法:

对链接或按钮直接设置相对位置,让它们浮动于滤镜区域的上面。

发表于 2008年9月24日 16:55

评论

# re: IE和Firefox下CSS和Javascript的区别

不错,哈哈
2009/7/12 10:27 | 凡客诚品

# re: IE和Firefox下CSS和Javascript的区别

对链接或按钮直接设置相对位置,让它们浮动于滤镜区域的上面
2009/8/23 11:09 | 春水堂

# re: IE和Firefox下CSS和Javascript的区别

Love the post and it took me a long time to scroll down to the bottom with what everyone had to say.
2011/1/10 20:46 | air max 2011

# re: IE和Firefox下CSS和Javascript的区别

Love the post and it took me a long time to scroll down to the bottom with what everyone had to say.
2011/1/10 20:56 | nike size 13

# re: IE和Firefox下CSS和Javascript的区别

Many more people, whoever men or women, youngs or olds, thin or muscular, are wearing ugg boots nowadays. And undoubtedly, there will be more in the days to come. You may wonder how can a pair of boots be so hot and eye-catching, well, people definitely have different attitudes towards this. But people like ugg boot mainly because ugg can keep our feet and body warm, and always be comfortable. Perhaps somebody think uggs are expensive, don't worry it again, now, we proivde you cheap ugg on our website http://www.cheaptalluggs.com You can find many kinds of ugg boots here, and buy ugg boots with low price but high quality. Many kinds of ugg cardy also be on sale, perhaps, you can not help falling in love with it. Now, mens uggs are on hot sale, boys and men can hurry up to own mens ugg boots for the coming cold weather. And, wearing one pair of ugg boot, you'll feel there's one step closer for you to be a star. That's the magical power of ugg.
2011/9/18 10:07 | cheaptalluggs

# coach outlet online

The most incredible knack about the coach bag of coach outlet online is that it would excellently please your minds beyond your mind's eye. For example, if you want to become the Angelina Julie, you will immediately need to wear the coach handbag around your shoulder.On establishing contact with a coach outlet hire agency, a few clarifications would need to be put to rest prior to working out a deal.
2012/1/6 11:42 | coach outlet online

# louis vuitton sale

There must be one louis vuitton vernis that is sure to fit your style. louis vuitton sale provide Louis Vuitton belt for men has royal purple lining, which could burnish whatever clothes.As we show below, louis vuitton outlet have a number of Louis Vuitton Earrings, louis vuitton replica handbags, in different styles for your selection.
http://www.louisvuittonoutletsaletime.com
2012/1/6 13:34 | louis vuitton sale

# coach factory outlet

Welcome to the coach factory outlet store and Enjoy Shopping Here! We promise all the customers to have the superior qualities and low prices.Many people like to go to coach factory online, Some people like to designers and shiny metal or leather coach shoulder bags. However, the majority of women choose to safe the neuter color coach shoulder bags. http://www.coachfactoryoutletlove.com
2012/1/6 13:34 | coach factory outlet

# louis vuitton uk

As we know,
louis vuitton uk

as we can imagine are a little expensive but are of good quality like the brand Coach. It's really a good choice to shopping in Louis Vuitton outlet.
louis vuitton

Outlets offer famous classic brand for LV,Channel, with perfect service.So become to the VIP soon.They offer more new styles,like LV purses,LV wallets etc. And are tested by product quality monitoring center .
http://www.louisvuitton-ukoutlet.org.uk
2012/1/6 13:37 | louis vuitton uk

# louis vuitton outlet

In the web times, even if you are a noble person on
louis vuitton outlet

, or to real action to prove himself, has been integrated into a new era.If in a foreign country to join the twitter, it is best to join army of micro-Bo;They're not chosen, so one of these ideal for you.For more flexibleness a lot more like these, there are lots of discount 'shoulder' variations outlet
louis vuitton bags

.
http://www.louisvuittonoutletbagsu.com
2012/1/6 13:45 | louis vuitton outlet

# coach outlet online

At the
coach outlet online

you have the largest selection of the day. If you touch the item and like it, keep it in your possession until you make your final decision.In particular, products from
coach factory outlet

with leather design are fashionable, handmade,leading the wave of American pop.It with simple,durable and unique style to win consumers.
http://www.coachoutletonlineusacoach.com
2012/1/6 13:46 | coach outlet online

# coach outlet store

Coach Outlet Store vision system is a visual enjoy, is a visual art. The particular design has been integrated function and the element of elegancy, then show you an exquisite and excellent product. You need not worry about the quality of the coach outlet store online for sale now. The Coach brand is famous for the perfect products.

2012/1/6 14:37 | coach outlet store

# coach outlet

if your dream is to look like a million bucks for a mere several dollars, then our coach outlet store is the Jiminy Cricket of your existence. to obtain coach outlet online in Hainan is amongst the brand new darling from residential holiday makers.


2012/1/6 14:37 | coach outlet

# coach factory outlet

Coach Factory Outlet has a big heart and a healthy appetite, and a wicked swing with a chainsaw.
2012/1/7 17:01 | coach factory outlet

# Hi,There,Nice to see your blog online.I Really love your publish.There is no doubt that I learn a lot from it.Much appreciated.

Hi,There,Nice to see your blog online.I Really love your publish.There is no doubt that I learn a lot from it.Much appreciated.
2012/3/2 12:34 | Prada Sneakers

# Focus on this article.I really like it.If you can change the its structure,It would be better.Thanks.

Focus on this article.I really like it.If you can change the its structure,It would be better.Thanks.
2012/3/2 12:34 | Ray Ban Aviator

# Greatest post

Greatest post I have seen.I learn a lot from it.Hope you can write more better articles in the near future.I am really eager to read it.Thanks.
2012/3/2 12:34 | Supra Society

# Truth is beautiful. Without doubt, and so are lies .

Truth is beautiful. Without doubt, and so are lies
.
2012/3/21 14:52 | oakley glasses

# louis vuitton uk

http://www.louisvuittonukk.co.uk louis vuitton uk
louis vuitton uk are ideal for daily usage. With the beautifully crafted exterior and with loads of interior space for all the essentials, it will adorn any outfit with city elegance. Louis Vuitton Bags are completely handmade, using the special materials of LV and first-class discoloration leather which are very fine and smooth,choose it on this louis vuitton online shop please. Best Place To Buy Louis Vuitton Online. "Be master of your petty annoyances and conserve your energies for the big worthwhile things.
2012/5/9 10:19 | louis vuitton uk

# louis vuitton outlet

http://www.louisvuittonoutletbagse.net louis vuitton outlet
Here is a world of louis vuitton outlet where you can find all kinds of new style and fashion Louis Vuitton bags. We really want to lead the trend and let our customer in the pursuit of luxury and fashion, satisfied the needs of customers. Now that louis vuitton bags outlet Belt you know what to consider, go and make an informed decision.Have a look at idol white. Do not feel like you are the only individual who may be surprised at all there is to discover about Baby pushchairs. These are powerful points, to be sure, and you can realize excellent results as well. But there is a great deal more than that about this. You can take specific points and pieces of important information and really feel something most people never do. That is what is can be achievable when you continue to discover more. Use Stunning Political Strategy Signs To Draw In Voters Almost all the politicians are specialized in. Welcome to our noteworthy Louis Vuitton handbags outlet Online Shop!
2012/5/9 10:19 | louis vuitton outlet

# coach outlet store online

http://www.coachoutletstoreonlineso.com coach outlet store online
Wholesale coach outlet are even provided for VIP members. Haven't got your own Coach yet? Why not come to coach outlet store online outlet. the shirt of coach outlet store has the abbreviation'FHS', which implies that the school at which he coached has a name that starts with an 'F'. If you buy Coach items at the Coach Outlet Online store, the goods will be sent out within 24 hours after confirming your payment and arrive to your door within 7 work days.
2012/5/9 10:19 | coach outlet store online

# coach bags

http://www.coachbagsoutlete.com coach bags
You might have seen plenty of greatest quality bags into your entire life span but when it comes to the Coach Bags they are remarkably efficient, versatile and carved bags beyond your imaginations. The Coach Signature Hobo is from the latest release of coach outlet store online. Its crisp, scribble material, leather handle, perfectly complements the relaxed shape of this stylish pouch. Coach bags, purses and other accessories can definitely add a touch of class to every woman. Coach Outlet Store sells Coach products which are moderately priced and yet of good quality.
2012/5/9 10:19 | coach bags

# coach factory outlet

Once visit, you will be unable to restrain loving it. Warmly welcome all of you to the Summer Sales Promotion on coach factory outlet.If you want to have the latest Coach arrivals, coach factory online may be a good choice. It provides its members with actually beneficial?prices?and high quality services.You can discover all types of style and design bags on coach factory outlet online, including the hot selling coach purses and coach wallets.
http://www.coachfactoryoutletao.com
2012/5/9 10:44 | coach factory outlet

# louis vuitton sale

There must be one louis vuitton vernis that is sure to fit your style. louis vuitton sale provide Louis Vuitton belt for men has royal purple lining, which could burnish whatever clothes.Looking for a louis vuitton outlet and don't know where they are? The easiest way is to enter here. That simple and you definitely will never be disappointed.
http://www.louisvuittonoutletsaleo.net

2012/5/9 10:44 | louis vuitton sale

# coach outlet online

It's wonderful to find out it does not slip in your signature at the bottom of the case and the appearance of brass accents from coach outlet online, Because women who can look stylish this summer.I received the Coach purse I ordered at the coach outlet store yesterday.I like its fashionable style as well as fine workmanship very much.Attention! coach outlet is offering new products at favorable prices for August.
http://www.coachoutletonlineao.com
2012/5/9 10:44 | coach outlet online

# coach outlet

coach outlet has always been simple,durable style features to win consumers.The products are more flexible,with easy bleaching,wear characteristics,and simply use a damp cloth.coach outlet store online marketed properly all greater compared to earth and earn cozy praise from customers. They are made from the finest leather and fabric.As a perfect combination of classic and modern fashion, coach outlet online can show the customers'unique personality.
http://www.coachoutletin.org
2012/5/9 10:44 | coach outlet

# louis vuitton uk

Louis Vuitton Outlet offers not only the fashion louis vuitton uk, but also many other LV goods. Welcome to visit the LV online store.louis vuitton Store Online Handbags can also bring great accuracy as well as practical applicability and fashionable.LV bags in the louis vuitton outlet are a feminine update on an urban classic. With plenty of room for all of your essentials this covetable carryall will take you through the weekend in style.
http://www.louisvuittonoutletukc.co.uk
2012/5/15 9:44 | louis vuitton uk

# coach outlet online

Becoming a regular member of coach outlet online, you can even buy wholesale purses, handbags, leather wallets at preferential prices. Why not have a try?coach factory outlet can design new and original products that are also functional. The stylish appearance of products, sophisticated workmanship, superior quality and highly competitive prices have won the customer's trust and love from consumers at home and abroad. So you can rest assured that purchase.Attention! coach outlet is offering new products at favorable prices for August. Brighter colors, finer looks and newer designs, all bring you a whole new summer.
2012/5/15 10:47 | coach outlet online

# [coach outlet]

coach outlet can provide the coach exactly the same is expected in a retail store. It can help you find bags of various colors, shapes and designs, which prove once again that the coach is actually a selection for the housekeeper.coach outlet store online with fashion style and top quality succeed. In any occasions they are very suitable and appropriate for its precise and rich design.Coach Kristin Leather Tote in coach outlet online is feature with top leather which is durable. Classic color is easy to match any clothes and different with other Coach bags. The bag with a large inside pocket and two outside pockets which are very convenient, you can take this bag in any occasions.
http://www.coachoutletao.com
2012/5/15 11:39 | [coach outlet]

# coach factory outlet

If you do not know design can be the most fashionable this fall, consider a glance on coach factory outlet! This summer, you have a wide range of options, because there are numerous designs, you can find from.coach factory online is actually a stylish Coach online store to sell perfect quality and discount Coach handbags, Coach bags, Coach wallets and Cheap Coach Purse.If you love Coach,you will like to get the best price on it.There are some practical and beautiful items for sale at coach factory outlet online for your selection. Do not miss it and have one for a try.
http://www.coachfactoryoutletonlineso.com
2012/5/15 13:37 | coach factory outlet

Post Comment

主题  
姓名  
主页
校验码  
内容   
京ICP备 05050892号