使用WPS宏编辑器自定义含参数函数时候,总是出现“is not a function”问题。
代码:function datajudge(data1,unitprice)
{
var reg="y";
var data2 = data1.tostring()
var length=data1.length
if(data1.charAt(length-1)=="y")
{
var price=data1.slice(0,-1)
var price1=parseInt(price)
var amount=price/unitprice
return amount
}
else{
var amount1=parseInt(data)
return amount1
}
}
一开始以为时参数data1的类型为range/object导致函数不能使用,所以想要转化data1的数据类型,没有成功,后面的"charAt"函数也会报同样的错误
(由于今天才接触js,如果出现很低级错误,勿喷~)