3,248
社区成员




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<OBJECT ID="CallHelper" CLASSID="CLSID:0AE7FA82-11E7-453F-AE3D-EB3EBA8A3B03"></OBJECT>
<script language="javascript" type="text/javascript">
function call_out(phone_num)
{
if(parseInt(phone_num) != "" && parseInt(phone_num) != "NaN")
{
CallHelper.call(phone_num);
alert(phone_num);
}
else
{
alert("电话号码错误!");
}
}
</script>
<div style="margin:200px auto;font-size:36px;font-weight:bold;">
<a href="javascript:void(0);" onclick="call_out('15210208937')" title="点击进行呼叫">15210208937</a>
</div>
</body>
</html>