jQuery: Redirect to other URL

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
    <body>
    <input id="btnTest" type="button" value="Test" />
</body>
<script type="text/javascript">
    $('#btnTest').click(function () {
        $(window.location).attr('href', 'http://www.google.com');

    });
</script>
</html>

 

posted @ 2014-07-04 16:22  巴别塔  阅读(5802)  评论(0编辑  收藏  举报