本文目录一览:
说某人坏话用英语怎么说
看场合用
不客气(informal)的场合可用Bad-mouth
She bad-mouths her husband everywhere 她到处说她丈夫的坏话
楼上(下)的speak ill of..亦可,是较客气的说法
I refuse to speak ill of any of my friends. 我拒绝说我任何朋友的坏话。
源:
修改密码的时候怎样提示密码中不能包含特殊字符,用js怎样控制
function Check(theForm)
{
var i;
var char;
var badword;
badword=';|`!*(~^)#?:"/$=//'+"'"
if (theForm.adminName.value=="")
{
alert("用户名不能为空!");
theForm.adminName.focus();
return (false);
}
else
{
for(i=0;itheForm.adminName.value.length;i++){
char=theForm.adminName.value.charAt(i);
if (badword.indexOf(char)=0) {
alert ("用户名错误,不能含有字符:"+char+"");
theForm.adminName.focus();
return false;
}
}
}
if (theForm.AdminPwd.value=="")
{
alert("密码不能为空!");
theForm.AdminPwd.focus();
return (false);
}
else
{
for(i=0;itheForm.AdminPwd.value.length;i++){
char=theForm.AdminPwd.value.charAt(i);
if (badword.indexOf(char)=0) {
alert ("密码错误,不能含有字符:"+char+"");
theForm.AdminPwd.focus();
return false;
}
}
}
if (theForm.CheckCode.value=="")
{
alert("验证码不能为空!");
theForm.CheckCode.focus();
return (false);
}
else
{
for(i=0;itheForm.CheckCode.value.length;i++){
char=theForm.CheckCode.value.charAt(i);
if (badword.indexOf(char)=0) {
alert ("验证码错误,不能含有字符:"+char+"");
theForm.CheckCode.focus();
return false;
}
}
}
}
给你参考,不能包含的字符由这行控制:badword=';|`!*(~^)#?:"/$=//'+"'"
say a bad word a bout sb的翻译
你好
say a bad word about sb 说某人的坏话
例句:
"No one has a bad word to say about the guy," says a recent Dell hire."In fact, they think he's just a regular guy who has built a great business that most people really love working in."
“没有一个人说过这个家伙的坏话,”一个戴尔新雇员说道,“实际上,他们认为他仅是一个普通人,他创建了一个大多数人都真正喜欢在其中工作的成功的企业。”
希望对你有帮助