<!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" />
<title>未命名</title>
</head><body>
    <script>
function add(num1,num2)
{
othis = this;
......... }
</script>
</body>
</html>但将JS内容单独放在一个.js文件中时,this那里报错
如何要替代this那里的内容呢?
[code=JScript]    <script>
function add(num1,num2)
{
othis = this; //这里报错

}
</script>
[/code]