Chinaunix首页 | 论坛 | 博客
  • 博客访问: 273277
  • 博文数量: 59
  • 博客积分: 1368
  • 博客等级: 中尉
  • 技术积分: 1071
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-02 06:06
文章分类

全部博文(59)

文章存档

2012年(59)

我的朋友

分类: 系统运维

2012-03-22 13:39:01

1 select获取改变之前的值
  1. var previous;
  2. $("select").focus(function () {
  3.     // Store the current value on focus, before it changes
  4.     previous = this.value;
  5. }).change(function() {
  6.     // Do something with the previous value after the change
  7.     alert(previous);
  8. });
2 javascript保留两位小数
  1. parseFloat(num).toFixed(2);
  2. //or
  3. Math.round(num * 100) / 100









end
阅读(951) | 评论(0) | 转发(0) |
0

上一篇:弹出新窗口

下一篇:Node

给主人留下些什么吧!~~