电脑技术学习

在输入英语单词后程序会自动翻译成中文

dn001

<!-- 把如下代码加入<body>区域中 -->
<script language="JavaScript">

<!-- ;

function asd(word)

{

document.f1.sWord.value= word

}

function translate()

{

var e= document.f1.eWord.value ;

e= new String(e) ;

e= e.toLowerCase();

switch (e)

{

case "who":

asd("谁")

break;

case 'what':

asd('什么');

break;


case 'dog':

asd('狗')

break;

case 'lunch':

asd('午饭')

break;


case 'hello':

asd('你好')

break;

case 'bye':
asd('再见')

break;

case 'head':

asd('头')

break;

case 'face':

asd('脸')

break;

case 'nose':

asd('鼻子')

break;

case 'mouth':

asd('嘴')

break;

case 'ear':

asd('耳朵')

break;

case 'eye':

asd('眼睛')

break;

// 20 wrds approx so far


case 'computer':

asd('电脑')

break;


case 'cat':

asd('猫')

break;


case 'today':

asd('今天')

break;

// 30

case 'window':

asd('窗子')

break;

case 'right':

asd('右、正确')

break;


case 'book':

asd('书')

break;

// 40

case 'notebook':

asd('笔记本')

break;

case 'paper':

asd('纸张')

break;


case 'park':

asd('公园')

break;

case 'sorry':

asd('对不起')

break;

case 'good luck':

asd('祝好运')

break;

case 'work':

asd('工作')

break;

case 'task':

asd('任务')

break;


case 'foot':

asd('脚')

break;

case 'good':

asd('好的')

break;

case 'bad':

asd('坏的')

break;

case 'flag':

asd('旗子')

break;

case 'station':

asd('停车场')

break;

case 'smoke':

asd('吸烟')

break;

case 'shirt':

asd('衬衣')

break;

case 'trousers':
asd('裤子')

break;

case 'dictionary':

asd('辞典')

break;

}

}

// end hide -->

</script>

<form name="f1">
<input type="text" name="eWord" size="10" maxlength="50">--->
<input type="text" name="sWord" size="10" maxlength="50">
<input type="button" value="翻译" onclick="translate()">
</form><br>
你可以输入dog,hello,sorry试试,字库有限
</center>