1

jQuery を使用した動的不透明度とスケーリングの IE サポートで問題が発生しています.animate()。Chrome と Firefox で「元の」方法を残しながら、IE に問題があるこれらの特定の行を変更したいと思います。

I have cam accross a solution that uses <!-- [if IE]> qrapped around a <script> tag. My problem is I want to use a line specific IE conditional in various places inside of a .JS file.

Is there a solution to this issue, or do I need to create an IE version of my .JS file?

4

1 に答える 1

4

いつでも jQuery を使用して、ブラウザ依存のチェックを行うことができます...

if ($.browser.msie) {
   //IE
} else {
   //NOT IE
}
于 2012-06-04T19:13:03.777 に答える