Javascript缺少参数

时间:2011-03-24 05:50:41

标签: javascript

create_anchor.setAttribute("onclick",
   "getModelData("+model.model_id.toString()+",
   "+model.model_name.toString +")"); 

当我将另一个参数传递给该函数时,它显示错误,错误是“缺少”参数列表之后“

  

[打破此错误]   输出是这样的   getModelData(7,xxxx - xxxx series(H))

1 个答案:

答案 0 :(得分:2)

create_anchor.setAttribute("onclick","getModelData("+model.model_id.toString()+",'"+model.model_name.toString +"')");

你的mode.model_name.toString应该用引号括起来