摘要:
在开发网站过程中用到了javascript,特记录其中的一些有价值的技巧以备查询。1.toFixed() 将数据四舍五入转换成制定位数的浮点数。如: var num = 3.766; document.write(num.toFixed(2)); 结果为3.77。网络上有介绍,toFixed() 对数据的四舍五入不是特别稳定。所以在使用时需要注意。重写toFixed()方法 Number.prototype.toFixed=function(s) { if(this >=0) { return(parseInt(this*Math.pow... 阅读全文
摘要:
1.从工具箱中找到combobox控件图标拖到winform界面上,IDE会自动生成一个combobox控件,控件名称为comboBox1.2.在Form1_Load()函数中添加如下代码: ArrayList lst = new ArrayList(); //列表 lst.Add(new Vendor("a_geshi03", "20")); //在列表中增加对象 lst.Add(new Vendor("a_geshi04", "30")); comboBox1.Items.Clear(); //清空combob 阅读全文