2013年6月28日

Html简单demo_html列表中进行编辑操作

摘要: html列表中进行编辑操作" />编辑" />保存取消//编辑$('._edit').click(function(){var tr = $(this).parents('tr');tr.find('._sort_box').hide();tr.find('._sort_input_box').show().find('input').val(tr.find('._sort_box').html());;tr.find('._edit_box').hi 阅读全文

posted @ 2013-06-28 14:31 andydaopeng 阅读(719) 评论(0) 推荐(0) 编辑

mysql sql语句使用技巧

摘要: mysql更新数据限制limitmysql更新时,要更新记录中某个区间的数据,只能用WHERE条件来限制了,用LIMIT只能限制更新多少条!测试如下:UPDATE products SET goods_number = goods_number+10 ORDER BY goods_id DESC LIMIT 5,10上面这句测试了是错误的,MYSQL的UPDATE语句不能更新限制从第几条到第几条!错误提示:#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL s 阅读全文

posted @ 2013-06-28 14:25 andydaopeng 阅读(267) 评论(0) 推荐(0) 编辑

php验证字符串长度问题

摘要: C:\Users\Administrator>php -r "echo strlen('你好')";4C:\Users\Administrator>php -r "echo mb_strlen('你好')";4C:\Users\Administrator>php -r "echo mb_strlen 阅读全文

posted @ 2013-06-28 14:10 andydaopeng 阅读(416) 评论(0) 推荐(0) 编辑

导航