-1

私はgifをロードするためのこのコードを持っていますが、私はその部分を理解していません$(".block1").load("views/changepass.template.php");. 説明してください。

$(function() {
    $(".changepass").click(function() {
        $(".block1").load("views/changepass.template.php");
        return false;
    });
});
4

1 に答える 1

0

すべてを説明するスクリプトの注釈付きバージョンを次に示します。

$(function() {//When the document is ready to be interacted with, ...
    $(".changepass").click(function() {//establish a 'click' event handler for .changepass element(s), which ...
        $(".block1").load("views/changepass.template.php");//loads content from the server into .block1 element(s), then ...
        return false;//ensures the natural 'click' action of the clicked element is not executed.
    });
});
于 2013-04-03T20:40:26.320 に答える