這實際上是一個Adobe AIR應用程序,但由於我遇到的問題是非常基本的JavaScript,因此我認爲我應該把它放在這裏。無法調用JavaScript函數 - ReferenceError:無法找到變量
下面是代碼:
<!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>
<title>KM Ciclo de Servicio</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/ciclo.css" rel="stylesheet" type="text/css" />
<script src="script/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
function changefield()
{
#('#ciclo').append('ASD');
}
</script>
</head>
<body oncontextmenu="return false;">
<div id="topMenu">
<button class="menuItem" id="new" title="Nuevo"><img src="images/new.png" alt="Nuevo"/></button>
<button class="menuItem" id="save" title="Guardar"><img src="images/save.png" alt="Guardar"/></button>
<button class="menuItem" id="open" title="Abrir"><img src="images/open.png" alt="Abrir"/></button>
<input type="text" value="Momento cambiado" onkeypress="changefield()"/>
<div style="display: inline-block; float: right;">
Nuevo:
<button class="menuItem" id="momento">Momento</button>
<button class="menuItem" id="atributo">Atributo</button>
</div>
</div>
<div id="main" align="center">
<div id="ciclo"></div>
</div>
<script src="script/init.js" type="text/javascript"></script>
</body>
</html>
這是我想調用的函數:
<script type="text/javascript">
function changefield()
{
#('#ciclo').append('ASD');
}
</script>
然而,我的終端告訴我有上line 20
一個錯誤,那就是:
<input type="text" value="Momento cambiado" onkeypress="changefield()"/>
錯誤說:
ReferenceError: Can't find variable: changefield
onkeypress at app:/index.html : 19
我檢查了一些關於JavaScript函數的教程以確保(包括w3schools中的一個),並且似乎沒有任何錯誤。我正在調用函數,這些教程是如何建議我這樣做的。
關於發生了什麼事情的任何想法?
你是對的!不能相信我在代碼中犯了這樣的錯字哈哈。那麼,謝謝你指出,它現在可以工作。 – ZoeStellan 2011-12-22 19:07:43