现在的位置: 首页 > 综合 > 正文

屏蔽标签的划选

2013年07月06日 ⁄ 综合 ⁄ 共 203字 ⁄ 字号 评论关闭
document.onselectstart= function(event){return selecttd()};
function selecttd(){
var the = event.srcElement ;
if(the.tagName.toLowerCase()!= "input"&&the.tagName.toLowerCase()!= "textarea")
{
return false;
}
return true ;
}

抱歉!评论已关闭.