10 2021 档案

摘要:1. 空白Trim replace(/(^\s*)|(\s*$)/g, "") 2. 选择信息 window.confirm("このデータを更新しますか?") 3. 信息框 alter() 4.四舍五入 CLng <=> Math.round() 返回小于等于x的最大整数: Math.floor(x 阅读全文
posted @ 2021-10-27 18:22 _jwj 阅读(91) 评论(0) 推荐(0)
摘要:1. FileStream :对字节进行处理的流,可以和StreamWriter,StreamReader一起使用 2. StreamWriter,StreamReader:写入和读取字符文件的 3. 使用StreamWriter,写入数据 1 try 2 { 3 FileStream Mystre 阅读全文
posted @ 2021-10-14 11:49 _jwj 阅读(352) 评论(0) 推荐(0)
摘要:1 private void txtKaisuu_KeyPress(object sender, KeyPressEventArgs e) 2 { 3 if ((e.KeyChar >= 32 && e.KeyChar <= 47) || (e.KeyChar >= 58 && e.KeyChar 阅读全文
posted @ 2021-10-11 17:06 _jwj 阅读(153) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/candyzhmm/p/5595358.html 阅读全文
posted @ 2021-10-08 15:23 _jwj 阅读(158) 评论(0) 推荐(0)