a标签

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<script type="text/javascript" charset="UTF-8"  src="./jquery.min.js" ></script>
</head>
<body>
    <div>注意两种(区分)写法,这种是以a标签来做弹框,跳转</div>
    <div><a href="javascript:void(0)" onclick ="add();">aaaa</a></div>
    <div><a onclick ="bdd();">bbbb</a></div>
<script>
    function add()
    {
        window.location.href='http://www.baidu.com';
    }
    function bdd()
    {
        window.location.href='http://www.sina.com';
    }
</script>
</body>
</html>

 

posted @ 2016-12-13 09:59  天涯alone  阅读(130)  评论(0编辑  收藏  举报