我正在为文本字段使用Jquery价格格式。然后,当文本字段默认显示为“0”。我不想看到0号,我希望没有值(value)就是没有值(value)。我怎样才能做到这一点 ?请帮我。谢谢。

这是Jquery价格格式:http://jquerypriceformat.com/

最佳答案

您可以使用像:

$('#example5').priceFormat({
  .....
  clearOnEmpty: true  //set this line will be ok
});

DEMO

09-20 18:57