将jQuery函数参数定义为字符串

时间:2013-12-06 11:40:41

标签: javascript jquery

我想问一个简单的问题,但只是在网上搜索,我无法得到答案。

  

功能项目(条形码)

当条形码从零开始时,它将转换为int并删除第一个零号,例如0123456,条形码将在功能中更改为123456。如何解决?

以前谢谢..抱歉我的英文不好

2 个答案:

答案 0 :(得分:1)

当您将params传递给函数时,需要引用params:以下是示例:

item(000001) // this will trim your value because it's numeric value and input param will be numeric

item('000001') or item("000001") // in this case you will get full string with leading zeros

答案 1 :(得分:0)

你需要这样的东西吗?

function item(barcode)
{
   if (barcode.charAt(0) == 0)
   {
       barcode = parseInt(barcode);
   }

   return barcode;
}