标签:
function search()
{
var k=document.getElementById("txtQQ").value;
if(typeof(k)=="undefined" || k==null || k.length<1) //string 类型 内容为空
{
alert("请输入对方的QQ!");
document.getElementById("txtQQ").focus();
return;
}
//window.location.href="http://wpa.qq.com/msgrd?v=3&uin="+k+"&site=qq&menu=yes";
var strUrl="http://wpa.qq.com/msgrd?v=3&uin="+k+"&site=qq&menu=yes";
window.open(strUrl,"","menubar=yes,location=no,scrollbars=yes,resizable=yes,width=800,height=600");
}
<input name="Button1" type="button" value="通知对方" id="searchbtn" onclick="search()"
class="optBtnStyle" />
<div onkeydown="javascript:if(event.keyCode==13) search()">
标签:
原文地址:http://www.cnblogs.com/camelroyu/p/4496612.html