码迷,mamicode.com
首页 > Web开发 > 详细

js点击获取连接的内容

时间:2014-10-29 12:08:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   sp   div   on   

<a href=‘#‘ onmouseover="mouseover2(this);" >格栅除污机</a>
<a href=‘#‘ onmouseover="mouseover2(this);" >格栅除污机</a>
<script>
function mouseover2(o){
    setTimeout(function(){
        var value = o.innerText;
        var input = document.createElement("input");
        input.style.border=0;
        input.value=value;
        //o.replaceNode(input);
        //input.select();
        alert(input.value)
    }, 2000);
}

</script>

 

js点击获取连接的内容

标签:style   blog   http   io   color   ar   sp   div   on   

原文地址:http://www.cnblogs.com/youtianxia/p/4058842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!