临时

点击时间,弹出窗口提示:

<a href="http://www.baidu.com/" target="_blank">
        <button id='btn1' type="submit" class="btn btn-success">点击百度搜索</button>                 # 这里最重要的是id='btn1'这个机制
</a>
<script>
    $('#btn1').click(function () {                                # 这里要写上#btn1
        alert('hello world')              # 类似于python  print
        console.log('hello world')        # 在浏览器控制台打印内容
    }) 
</script>

效果如下:

posted @ 2021-02-28 09:58  峰哥ge  阅读(49)  评论(0编辑  收藏  举报