admin管理员组

文章数量:1343311

I've been googling for the past hour or so but can't seem to figure out a solution to this problem. I just finished jQuery course from codecademy, and am now working on a project. For some reason my code jquery code will not work

jQuery:

$(document).ready(function(){
$("div").css("border", "3px solid red");
$(".storyblocks").mouseenter(function(){
    $(this).animate({
        height: "+= 20px"
        width: "+= 20px"
    });
});

$(".storyblocks").mouseleave(function(){
    $(this).animate({
        height: "-= 20px"
        width: "-= 20px"
    });
});
}); 

HTML:

<!DOCTYPE html>
<html>
<head>
<title>Project Website</title>
<link type = "text/css" rel = "stylesheet" href = "stylesheet.css"/>
<script type="text/javascript" src=".10.2/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>

</head>

I added the $("div").css("border", "3px solid red"); to check if divs have red border, and so far no luck. Some say that I don't need $(document).ready, but I don't understand why not.

Please help?

I've been googling for the past hour or so but can't seem to figure out a solution to this problem. I just finished jQuery course from codecademy, and am now working on a project. For some reason my code jquery code will not work

jQuery:

$(document).ready(function(){
$("div").css("border", "3px solid red");
$(".storyblocks").mouseenter(function(){
    $(this).animate({
        height: "+= 20px"
        width: "+= 20px"
    });
});

$(".storyblocks").mouseleave(function(){
    $(this).animate({
        height: "-= 20px"
        width: "-= 20px"
    });
});
}); 

HTML:

<!DOCTYPE html>
<html>
<head>
<title>Project Website</title>
<link type = "text/css" rel = "stylesheet" href = "stylesheet.css"/>
<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>

</head>

I added the $("div").css("border", "3px solid red"); to check if divs have red border, and so far no luck. Some say that I don't need $(document).ready, but I don't understand why not.

Please help?

Share Improve this question edited Nov 8, 2013 at 4:33 Praveen 56.6k35 gold badges136 silver badges166 bronze badges asked Nov 8, 2013 at 4:28 user2967568user2967568 431 gold badge1 silver badge4 bronze badges 2
  • 2 are you sure that your path to script.js is correct and the file is loading? You can use Firebug/Chrome tools to verify that the file is loading. – Tommy Commented Nov 8, 2013 at 4:30
  • Check whether is the file inside a folder for example: js/script.js – Developer Commented Nov 8, 2013 at 4:35
Add a ment  | 

4 Answers 4

Reset to default 5

Your issue with your jQuery not working doesn't have to do with having your jQuery in a separate file, it has to do with a small syntax error: you don't have a ma in between your animate properties, and your animate properties are using incorrect syntax.

Here's your code, but with the necessary mas, and proper syntax for animating properties:

http://jsfiddle/4xfAZ/2/

The ma is here:

$(document).ready(function () {

    $("div").css("border", "3px solid red");
    $(".storyblocks").mouseenter(function () {
        $(this).animate({
            height: ($(this).height() + 20) + 'px',
            width: ($(this).width() + 20) + 'px'
        });
    });

    $(".storyblocks").mouseleave(function () {
        $(this).animate({
            height: ($(this).height() - 20) + 'px',
            width: ($(this).width() - 20) + 'px'
        });
    });
});

After the height declaration, before the next declaration, you need to separate by mas.

Because your jQuery errored, it didn't do anything, which is why you didn't see the red border :) even though the red border code is separate to the offending code.

HTH

This will set the border :

$("div").css("border", "3px solid red"); 

To check if div have red border with 3px :

 if( $("div").css("border") == "3px solid red") {
    console.log('border have red color')
 } 

Try this:

+=20px will not work you need to find height of div and then add/subtract 20px.

    $(document).ready(function(){
        $("div").css("border", "3px solid red");
        $(".storyblocks").mouseenter(function(){
            var h = $(this).height()+20;
            var w = $(this).width()+20;
            $(this).animate({
                height: h+"px",//add ma here
                width: w+"px"
            });
        });
        $(".storyblocks").mouseleave(function(){
            var h = $(this).height()-20;
            var w = $(this).width()-20;
            $(this).animate({
                height: h+"px",//add ma here
                width: w+"px"
            });
        });
    });

Fiddle here.

I want to separate my jquery method in another js file. so I put Jquery file like as scripts on js file and put src on main file .

I wrote this code on html file

<head>
<script src="https://ajax.googleapis./ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="my_jquery_functions.js"></script>
</head>

and this code on javasciript file

$(document).ready(function () {
  $("#some_id").hide(1500);
});

本文标签: javascripthow do I put jquery in a separate fileStack Overflow