E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
charCode
简单的学生成绩管理系统
include#include#include//学生结构体structStudent{charid[20];charname[50];floatscore;};//课程结构体structCourse{
charcode
陇院第一Sweet Baby
·
2024-02-06 17:44
c语言
JavaScript中Event.returnValue属性
现在举个例子说明:varcharCode=event.keyCode;if(
charCode
75){alert("对不起,你输入的不是数字字符!")
Eternal丶星空
·
2024-01-27 17:03
while (getchar() != '\n')
```
charcode
;for(;;){printf("Enteroperationcode:");scanf("%c",&code);while(getchar()!
东榆非晚
·
2024-01-10 06:49
【IO进程线程day1作业】
#include#includeintmain(intargc,constchar*argv[]){characcount[20]="";
charcode
[20]="";FILE*fp=fopen(".
刘泽宁1
·
2023-12-27 22:18
c语言
vue自定义指令,限制input输入框只能输入纯数字
inserted:function(el){el.addEventListener("keypress",function(e){e=e||window.event;letcharcode=typeofe.
charCode
文芬
·
2023-12-16 22:39
移动端 h5 界面软键盘搜索功能实现
实现搜索功能移动端点击软件盘进行搜索.png解决方法:对应移动端按键响应事件onkeypress(或者keyup)按键编码为13,document.onkeyup=function(e){varcode=e.
charCode
苦咖啡Li
·
2023-12-02 22:50
基于UDP的网络聊天室
其他用户可以收到这个人的登录信息如果有人发送信息,其他用户可以收到这个人的群聊信息如果有人下线,其他用户可以收到这个人的下线信息服务器可以发送系统信息服务器:#include//定义存储信息结构体typedefstruct_MSG{
charcode
47不乖
·
2023-12-01 15:02
网络
udp
网络协议
基于UDP的网络聊天室
客户端#include//定义存储信息结构体typedefstruct_MSG{
charcode
;//操作码:'L'表示登录'C表示群聊'S'表示系统消息'S'表示退出charname[128];chartxt
qjw.c
·
2023-11-30 14:51
网络
udp
网络协议
ILI9225 TFT显示屏16位并口方式驱动
驱动(库文件和STM32基本一样)一、源码ILI9225.c#include"ILI9225.h"#include"ch32v30x_gpio.h"//---汉字的字库头文件---//#include"
charcode
.h
修充电器上瘾
·
2023-11-26 17:51
单片机
嵌入式硬件
c语言
判断字符串中括号是否匹配[C/C++]
函数接口定义:intMatch(
charcode
[])解释接口参数:其中code是用户传入的参数。code表示给定的字符串;函数返回1或0,1表示该字符串中括号匹配,0表示该字符串中括号不匹配。
轻 雪
·
2023-11-08 00:27
PTA题目
算法
c++
数据结构
js控制回车触发事件
回车提交表单//兼容FF和IE和OperavartheEvent=window.event||e;varcode=theEvent.keyCode||theEvent.which||theEvent.
charCode
初生的太阳丶
·
2023-10-27 04:39
js
javascript
前端
哈夫曼编码——贪心
#includeusingnamespacestd;typedefstructhuffmannode{
charcode
;intweight;structhuffmannode*left;structhuffmannode
lpcarl
·
2023-10-22 14:18
js禁止鼠标右键及F12禁止查看源代码及禁止其他操作
F12document.onkeydown=function(e){ varcurrKey=0,evt=e||window.event; currKey=evt.keyCode||evt.which||evt.
charCode
叶术棵
·
2023-10-12 00:19
前端实用小技巧
javascript
开发语言
前端
前端框架
js 键盘监听(回车)
键盘监听回车document.onkeydown=function(event_e){if(window.event){event_e=window.event;}varint_keycode=event_e.
charCode
小何开发
·
2023-10-11 12:38
js
Structure Padding / Memory align
#includestructbag{charx;chary;intz;};structemployee{intid;
charcode
;};intmain(){structbagb;structemployeee
烨昕.
·
2023-10-07 20:27
开发语言
c语言
JavaScript String、Array、Object、Date 常用方法小结
字符串(String)charAt//返回在指定位置的字符"12345".charAt(0);//1charCodeAt//返回在指定的位置的字符的Unicode编码"12345".
charCode
·
2023-09-28 11:14
vue通过自定义指令实现文本框只能输入正整数
directives:{numInput(el){el.addEventListener("keypress",function(e){e=e||window.event;letcharcode=typeofe.
charCode
悠哉码农的日常
·
2023-09-25 17:14
vue
vue.js
摁下enter键自动执行下一个dom、登录加上enter功能
(e)=>{//兼容FF和IE和OperalettheEvent=e||window.event;letcode=theEvent.keyCode||theEvent.which||theEvent.
charCode
小白修仙路
·
2023-09-16 19:25
华清远见上海中心22071班 8.30作业
/usr.txt","r");if(NULL==zy){perror("fopen");return-1;}charuser[20]="";
charcode
[20]="";print
疯狗Crazydo
·
2023-08-30 22:10
c语言
c++
linux
2022-11-15数组与指针
/*一些数组声明*/intmain(void){floatcandy[365];/*内含365个float类型元素的数组*/
charcode
[12];/*内含12个char类型元素的数组*/intstates
4d29e26b2bce
·
2023-08-22 11:41
JavaScript中按键事件的e.keyCode || e.which || e.
charCode
1、浏览器的按键事件浏览器有3种按键事件——keydown,keypress和keyup,分别对应onkeydown、onkeypress和onkeyup3个事件句柄。一个典型的按键会产生所有这三种事件,依次是keydown-->keypress-->keyup。例如:下面代码每当按下键盘按键时,经历的三种事件分别在console控制台中依次打印出所经历事件名称keydown、keypress、k
正好80
·
2023-08-05 02:39
C 语言 10.1 数组
通过声明数组告诉编译器数组中含多少元素和这些元素的类型编译器需要根据这些信息正确的创建数组,普通变量可以使用的类型,数组元素都可以用考虑下面的数组声明:intmian(void){floatcandy[365];/内含365个float类型元素的数组/
charcode
zmyyyyu
·
2023-07-26 13:50
C语言
c语言
阻止按空格键页面下拉
functioncancelSpace(e){vare=e||window.event;varelm=e.srcElement||e.target;varkey=e.keyCode||e.
charCode
PrayerFaith-Depart
·
2023-06-15 12:02
前端
javascript
html5
页面下拉
空格键
函数
基于哈希查找的字库设计与实现及其自动生成工具的实现
2、哈希函数和哈希码:根据上述基本思想可以构造如下的哈希函数:HashCode=((
CharCode
)2&0x3ff00)>>8可以看出,取的是字符内码(
CharCode
)平
iteye_13789
·
2023-06-11 13:19
数据结构与算法
嵌入式
前端 JavaScript控制回车键进行表单(form)提交
=function(e){//回车提交表单vartheEvent=window.event||e;varcode=theEvent.keyCode||theEvent.which||theEvent.
charCode
天下·第二
·
2023-06-08 05:25
前端
javascript
前端
开发语言
el-input限制只输入数字
inserted:function(el){el.addEventListener("keypress",function(e){e=e||window.event;letcharcode=typeofe.
charCode
泡杯感冒灵
·
2023-04-18 05:59
页面禁用F12,禁用右键,禁止保存
F12document.onkeydown=function(e){varcurrKey=0vatevt=e||window.eventcurrKey=evt.KeyCode||evt.which||evt.
charCode
小小弓长张
·
2023-04-15 19:53
vue中input输入框输入内容控制
binding,vnode,oldVnode){el.addEventListener("keypress",function(e){e=e||window.event;letcharcode=typeofe.
charCode
雨后晴阳
·
2023-04-10 10:05
flutter 文本上下角标显示,如角度、温度
1、导入字符集库//根据需要导入import'package:
charcode
/ascii.dart'asAscii;import'package:
charcode
/html_entity.dart'asHtmlEntity
天国镜
·
2023-01-28 16:37
判断字母异位词 --- 华为一面(手撕代码)
示例1:输入:s="anagram",t="nagaram"输出:true示例2:输入:s="rat",t="car"输出:false提示:1String.fromCharCode(
CHARCODE
_A_LC
yy_33404590
·
2022-11-20 20:57
学习
javascript
开发语言
ecmascript
JS前端使用Blob和File读取文件的操作代码
如果一定要处理的话,只能使用
charCode
·
2022-11-05 09:17
js中按下回车触发事件
回车提交表单//兼容FF和IE和OperavartheEvent=window.event||e;varcode=theEvent.keyCode||theEvent.which||theEvent.
charCode
weixin_38166557
·
2020-09-17 13:28
Delphi按下回车键使各控件依次获得焦点
procedureTForm1.FormShortCut(varMsg:TWMKey;varHandled:Boolean);vari:Integer;beginifMsg.
CharCode
=VK_RETURNthenbegini
szyyjzy
·
2020-09-17 13:53
Delphi
js键盘组合事件并阻止浏览器默认事件
event.which:"+event.which+">>event.keyCode:"+event.keyCode)varkeyCode=event.keyCode||event.which||e.
charCode
阿萨德夫
·
2020-09-16 23:00
javaScript
iview admin vue监听键盘回车事件--Enter
event.which:event.
charCode
//eslint-disable-next-lineeqeqeqif(code==13){this.handleSearch()}},enterKeyupDes
idwtwt
·
2020-09-15 00:00
前端
EXT--监听键盘事件
Ext.get('text').on('keypress',function(e){//监听键盘事件if(e.
charCode
==Ext.EventObject.SPACE){Ext.Msg.alert
iteye_4927
·
2020-09-13 22:23
EXT
【180day网站】36-42
2、$(document)on("keypress",function(key){varc=String.fromCharCode(key.
charCode
);});捕捉键码。
shatangju
·
2020-09-13 12:18
javascript
C# 验证码生成(MVC和非MVC两种方式)
//////生成验证码//////指定验证码的长度///publicstringCreateValidateCode(intlength){intrand;
charcode
;stringrandomcode
18790970257
·
2020-09-11 17:15
测试
c#
labview与单片机串口通信的问题与解决办法
发送的数据格式:
charcode
印花小手套
·
2020-09-11 05:03
labview学习
labview串口通信
JS获取字符串实际长度!
varjmz={};jmz.GetLength=function(str){///获得字符串实际长度,中文2,英文1///要获得长度的字符串varrealLength=0,len=str.length,
charCode
gdrw6411
·
2020-09-11 01:40
javaScript
哈夫曼编码/译码系统
includeusingnamespacestd;#include#include#defineMAX100000000/*定义一个无限大的值*/#includeintm,n;typedefstruct{charletter;intnumber;
charcode
泡泡爱编程
·
2020-09-10 16:24
js中给回车键绑定事件响应函数
document.onkeydown=keyDown;//回车functionkeyDown(e){vare=e||event;varkey=e.keyCode||e.which||e.
charCode
凌渊阁
·
2020-08-26 16:51
Javascript
Jquery键盘监听输入存数字
chrome$("input[id^='QTY_']").keypress(function(event){vareobj=event||e;varkeyCode=eobj.keyCode||eobj.
charCode
一笛一剑一昆仑
·
2020-08-26 14:52
数据库实验四
这里贴上获取验证码的代码:(采用随机数Random实现)privatevoidLoading(objectsender,EventArgse){//随机实例化Randomran=newRandom();intnumber;
charcode
1
heart_yyf
·
2020-08-26 12:08
键盘事件
}document.onkeypress=function(e){console.log(e);}按下字符键a第一个是keydown,第二个是keypress一般监听字符类按键用keypress里面的
charCode
scwMason
·
2020-08-26 11:17
HTML/CSS/JS
敲击 enter 键盘,触发事件
e.which:e.keyCode;//window.alert(
charCode
);if(
charCode
==13){search();}}
pengfeicao521
·
2020-08-26 11:44
web前端
UVa 213Message Decoding新手解法
1.使用一个二维数组保存编码头,第一个下标表示每个编码头字符对应01串的长度,第二个下标表示01串的值,这样一来我们就可以得出此二维数组的大小,即code[8][1
charcode
[8][1<<7];intgetNum
Hello_World_96
·
2020-08-24 23:04
uva
JS的中文输入法下KeyDown()的keyCode值总为229
$(document).keydown(function(e){varcurrKey=0,CapsLock=0,e=e||event;theKey=e.keyCode||e.which||e.
charCode
chuanjiang9220
·
2020-08-24 00:16
js截取,支持中文
varGetLength=function(str){///获得字符串实际长度,中文2,英文1///要获得长度的字符串varrealLength=0,len=str.length,
charCode
=-1
snwz5588668
·
2020-08-22 18:21
javascript
程序设计2题(通讯录)
include#include#includeusingnamespacestd;typedefstructNode{charname[10];charsex[10];charaddress[10];
charcode
zhuyuweiwei
·
2020-08-22 09:15
上一页
1
2
3
4
5
6
7
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他