`
wurushuang
  • 浏览: 38758 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

jquery提交,清除,复制到剪切板

    博客分类:
  • JSP
阅读更多
body style="background-color: #f8f8f8;" onload="setTimeClean();">   jquery加载清除指定区域   
  
<script type="text/javascript">   
function checkForm(){   
var content = document.form1.content.value;   
if(content.length < 5){   
alert("内容须大于5个字!");   
//document.form1.content.focus();   
return false;   
}else{   
return true;   
}   
</script>   
  
  
<script type="text/javascript">   
function getTop(val)   
{   
$.ajax({   
type: "post",   
url: "<%=path%>/bbs.do?method=top",   
data: "top="+val+"&id="+<%=id%>,   
success: function(msg)   
{    
var info = eval('(' + msg + ')');   
var top = info.top;   
if(top==0){   
$("#top").html("<a href='javascript:void(0);' onclick='getTop(1);'><img title='置顶' height='15' src='<%=path%>/forum/images/top.gif' width='15' align='absMiddle' /></a>");   
$("#tip").html("<span style='color:red;padding-right:10px;'>取消成功</span>");   
setTimeClean();   
}else{   
$("#top").html("<a href='javascript:void(0);' onclick='getTop(0);'>取消置顶</a>");   
$("#tip").html("<span style='color:red;padding-right:20px;'>置顶成功</span>");   
setTimeClean();   
}   
}   
});    
}   
function setTimeClean()   
{   
setTimeout("clear()",5000);    
}     
  
function clear()   
{   
$("#tip").html("");   
}   
  
$(function(){   
$("#copyUrl").bind("click", function(){    
//alert( $(this).text() );   
copyToClipBoard();   
});    
});   
  
//复制到剪切板   
function copyToClipBoard(){   
var clipBoardContent='';    
//clipBoardContent+=document.title;   
//clipBoardContent+=window.location;   
clipBoardContent+="www.www.com";   
window.clipboardData.setData("Text",clipBoardContent);   
alert("复制成功!");   
}   
</script>   

分享到:
评论
1 楼 FYIHDG 2016-04-07  
      

相关推荐

Global site tag (gtag.js) - Google Analytics