请帮助我继续返回TypeError $(...)为null

时间:2014-09-26 02:21:28

标签: javascript

我的老师制作了一个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:
  

TypeError $(...)为空

2 个答案:

答案 0 :(得分:0)

抱歉,我在事故中用引号做了。 我将其重新标记为$(field_name).value == ("");并且有效。

答案 1 :(得分:-2)

由于field_name是函数的参数,因此不应将其括在引号中。

应该是:

$(field_name).value() = ";

修改

我的坏。它应该是$(field_name).val("");而不是