摘要:
AngularJs 对应controller中写: $scope.moblie_test=function (telphone) { var isChinaMobile = /^134[0-8]\d{7}$|^(?:13[5-9]|147|15[0-27-9]|178|18[2-478])\d{8}$/; var isChinaUnion = /^(?:13[... 阅读全文
摘要:
})其中return返回的对象包含很多参数,下面一一说明 你知道用AngularJs怎么定义指令吗? 1.restrict (字符串)可选参数,指明指令在DOM里面以什么形式被声明; 取值有:E(元素),A(属性),C(类),M(注释),其中默认值为A; E(元素):<directiveName>< 阅读全文
摘要:
这是C语言课后的一道习题,网上可以找到很多相关的代码,都可以很好的基本完成题目要求 但是,我发现很多的代码都无法实现统计字符串中大于10的数字(只局限于统计0-9之间的数字) 此程序可以改进具有十位,百位,千位,甚至更大的数字的统计: 阅读全文
摘要:
//hash.c #include <sys/types.h>#include <sys/time.h>#include <stdio.h>#include <stdlib.h>#include <fcntl.h>#include <unistd.h> static u_char xor[12];s 阅读全文
摘要:
#include<stdio.h>#include<nids.h>#include<string.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#include<stdlib.h>#include<neti 阅读全文
摘要:
warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘int’ [-Wformat=] 例如: printf("%s", ctime((const time_t *)&protocol_hea 阅读全文
摘要:
char*inet_ntoa(struct in_addr in)将一个IP转换成一个互联网标准点分格式的字符串。 我把 inet_ntoa 需要的头文件加上去: #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet. 阅读全文
摘要:
法一: 指定可用网卡: nids_params.device="lo"; 法二: nids.h中有这么一段: struct nids_chksum_ctl { u_int netaddr; u_int mask; u_int action; u_int reserved; }; extern voi 阅读全文