我的老師製作了一個js文件,並告訴我們找到錯誤並修復它們。但是,我堅持這一點。
//this function is called when the user enters invalid data into the form and hits the calculate button
function clearField(field_name) {
//set the value of the passed in field name to blank
$("field_name").value = "";
$("field_name").value = ""; keeps returning an error message like this:
類型錯誤$(...)爲空
你確定你應該通過'$(「field_name」)'而不是'$(field_name)'來獲取對象嗎? +你確定你有jQuery /包括什麼? – 2014-09-26 02:23:52
首先告訴我們你在'field_name'中獲得什麼' – 2014-09-26 02:24:58
'.value'?不是'.val()'? – sideroxylon 2014-09-26 02:26:34