入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
15
2008-09
注册成功后页面3秒跳转的实现 2008-09-15
在做注册页面中碰到的,由JavaScript实现     无标题页     var time = 3;     function tiaozhuan()     {         if(time==0)           

			
				Keil MDK C  (error: #29: expected an expression) 错误的解决
Keil MDK C (error: #29: expected an expression) 错误的解决 2015-03-30
今天,自己建了一个EFM32工程模版,调试代码时显示  ..AppPanel_main.c(119): error:  #29: expected an expression 仔细的检查了半个小时,最后解决了!问题关
24
2018-02
tf.matmul和tf.multiply 2018-02-24
tf.matmul是矩阵的乘法,即tf.matmul(x,y)中的x和y要满足矩阵的乘法规则,例如x=[2,3],y=[3,2]tf.multiply是两个矩阵对应的数据相乘,所以两个矩阵的形式必
12
2018-01
注册成功后,动态的设置3秒后页面跳转 2018-01-12
jsp页面 --%> Insert title here #d1{   height:40px;   weight:800px;   magin:auto;   top:300px;   background-color:green;}#tip,#s2{        color:red;        font-size:30

			
				stm32 mdk c++(error:  #29: expected an expression)
stm32 mdk c++(error: #29: expected an expression) 2013-08-13
1、编译下面语句出错 FSMC_T fsmc = {     .initialize = initialize }; 2、MDK 默认用的是 C90,配置一下可以支持 C99,按下图修改
21
2017-05
Validation阻止表单自动提交,使用Ajax提交表单(使用Validation的submitHandler方法) 2017-05-21
在使用Validation时,我们有时候不希望验证成功后直接跳转页面(比如判断登录密码用户名正确与否),而希望自己使用Ajax提交,并且验证回调的结果。
27
2015-11
Keil MDK C (error: #29:expected an expression)错误的解决 2015-11-27
原文地址::http://www.bubuko.com/infodetail-710527.html Keil  MDK  IDE默认的C标准是C90,要去修改为C99的标准。    工程/Options/C/C++/Misc Controls/--c99
18
2017-01
tf.matmul 2017-01-18
矩阵a*b # 2-D tensor `a` a = tf.constant([1, 2, 3, 4, 5, 6], shape=[2, 3]) => [[1. 2. 3.] [4. 5. 6.]] # 2-D tensor `b` b = tf.constant([7, 8, 9, 10, 11,
22
2016-10
使用ajaxSubmit自动填充数据时,如果input的name重名则无法填充该input数据值 2016-10-22
使用ajaxSubmit自动填充表单数据时,当前html页面中出现相同name的input。 如 ...... 那么,jqueryform无法获取到该input数据值。 var params = {};//jqueryform会自动填
11
2016-03
宏定义中Error[Pe029]: expected an expression 2016-03-11
在定义读写字节宏时出现Error[Pe029]: expected an expression。 我的定义如下: #define READ_RAM(p, type) (*(((type)*)(p)))//错误 #define READ_RAM8(p) READ_RAM(p,