将货币符号切换到焦点/模糊上的窗体字段-对成本数据有用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将货币符号切换到焦点/模糊上的窗体字段-对成本数据有用相关的知识,希望对你有一定的参考价值。
jQuery.fn.moneyField = function(symbol) { return this.each(function() { $(this).focus(function(){ if(!$(this).val()) $(this).attr('value', symbol); }).blur(function(){ if($(this).val() == symbol) { $(this).attr('value', ''); } else { s = $(this).val(); s = $.numAddCommas(s); // Add commas to long digit strings - you will need to get a function to do this (find one on snipplr) $(this).attr('value', s); var hascur = s.indexOf(symbol); if(hascur) $(this).attr('value', symbol+s); } }).prev('label').click(function(){ return false; }); }); } $(function(){ $('input[name=money_field]').moneyField('£'); });
以上是关于将货币符号切换到焦点/模糊上的窗体字段-对成本数据有用的主要内容,如果未能解决你的问题,请参考以下文章