jquery demo

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>Demo</title>
    <script src="jquery.js"></script>
    <script>
        $(document).ready(function(){
            $("a").click(function(event){
                alert("Thanks for visiting!");
                event.preventDefault();
            });
        });
    </script>
</head>
<body>
    <a href="http://jquery.com/">jQuery</a>
</body>
</html>

 

posted @ 2016-02-26 16:14  平小宅  阅读(79)  评论(0编辑  收藏  举报