Javascript / jquery适用于除Firefox之外的所有浏览器

时间:2011-07-20 10:06:02

标签: javascript jquery asp.net-mvc-3 firefox

此代码适用于IE 8,Chrome和Safari,但不适用于Firefox:

<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
<script type="text/jscript">
        alert("wazzup");
        $(document).ready(function () {

            $(".MathLink").hover(function () {
                $(this).css("color", "#d7d7d7");
            }, function () {
                $(this).css("color", "#FFFFFF");
            });

            $("#betyg_textblock").click(function () {
                window.open("http://hogrebetyg.se/");
            })

            $("#roids_textblock").click(function () {
                window.open("http://www.kongregate.com/games/irradiance_se/roids?acomplete=roids");
            })

            $(".servicesDiv").mouseenter(function (event) {

                if ($(this).css("height") == "45px") {
                    $(".servicesDiv").animate({
                        height: "45px"
                    }, 300);

                    $(this).animate({
                        height: "100px"
                    }, 300, function () {
                        $(".servicesDiv").clearQueue();
                    });
                }
            });

            $(".news").click(function (event) {
                if ($(this).css("height") == "53px") {
                    $(this).animate({
                        height: "100%"
                    }, 400, function () {
                        $(".news").clearQueue();

                    });
                }
                else {
                    $(this).animate({
                        height: "53px"
                    }, 400, function () {
                        $(".news").clearQueue();

                    });
                }
            });
        });
    </script>

我不知道为什么。请帮忙。

1 个答案:

答案 0 :(得分:6)

请参阅以下内容:

文字/ JavaScript的

Opera 7.54+

IE 5+

Firefox 1.0.7+

Safari 2.0.3+

iCab 3 Beta 394

Camino 2006021400

文字/ JScript的

Opera 7.54+

IE 5+

Safari 2.0.3 +

将其更改为 text/javascript

参考:http://sachabarber.net/?p=824http://krijnhoetmer.nl/stuff/javascript/mime-types/

e.g。

<script type="text/jscript"> /*Code*/ </script>

<script type="text/javascript"> /*Code*/ </script>