这是什么电脑

来源:百度知道 编辑:UC知道 时间:2024/06/07 00:27:36
笔记本的背面的字母是ISW我不清楚是什么牌子啊!在电视剧《命中注定我爱你》上面全是这个牌的啊!!!!!!!!!

是 MSI 不是 ISW 台湾的

<html>
<head>
<script>
function wahaha()
{
var result = false;
var str = TBOX.value;
if(str.indexOf('@')>0)
{
var a1 = str.split('@')[0];
var a2 = str.split('@')[1];
if(isW(a1) && a2.indexOf('.')>0)
{
if(isW(a2.split('.')[0]) && isW(a2.split('.')[1]))
result = true;
}
}
if(!result)
alert("邮箱格式不对");
}
function isW(str)
{
if(str.length==0)
return false;
for(var i=0; i<str.length; i++)
{
var tmp = str.substring(i,i+1);
if(!(tmp>='a'&&tmp<='z') && !(tmp>='A'&&tmp<='Z') && !(tmp>='0'&&tmp<='9') && tmp!='_')
return false;
}
return true;
}
</script>
</head>
<body>
<input type="te