美文网首页
【基础】鼠标悬停

【基础】鼠标悬停

作者: JerichoPH | 来源:发表于2017-10-12 21:51 被阅读86次

鼠标悬停

  • html
<div id="app">
    <span v-bind:title="message">
        鼠标悬停几秒钟查看此处动态绑定的提示信息!
    </span>
</div>
  • js
<script>
    // 初始化数据
    window.onload = function () {
        var vue = new Vue({
            el: '#app',
            data: {
                message: '页面加载于 ' + new Date().toLocaleString()
            }
        });
    };
</script>

相关文章

网友评论

      本文标题:【基础】鼠标悬停

      本文链接:https://www.haomeiwen.com/subject/ntfayxtx.html