会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Doublekai
博客园
首页
新随笔
联系
订阅
管理
1
2
3
下一页
2018年10月12日
基于ASP.net耳机网店商城系统(前台页面+后台页面)
摘要: 源码https://github.com/doublekai/user web文件夹
阅读全文
posted @ 2018-10-12 15:11 Doublekai
阅读(949)
评论(0)
推荐(0)
2017年12月19日
js网页计算器(按键+点击)
摘要: 下面是主页面 css 运行截图 背景直接拖了一张图片
阅读全文
posted @ 2017-12-19 21:07 Doublekai
阅读(4248)
评论(0)
推荐(0)
2017年12月13日
js简易留言板
摘要: 上面是主页代码下面是js 运行截图
阅读全文
posted @ 2017-12-13 19:08 Doublekai
阅读(2474)
评论(1)
推荐(0)
2017年12月5日
js省市二级联动(个别城市)
摘要:
阅读全文
posted @ 2017-12-05 19:14 Doublekai
阅读(215)
评论(0)
推荐(0)
2017年11月24日
js动态生成日历(完美注释!)
摘要: 下面是截图 样式和html已省略
阅读全文
posted @ 2017-11-24 10:44 Doublekai
阅读(4556)
评论(0)
推荐(1)
2017年6月2日
python提取网页数据
摘要: #coding:utf-8 import urllib2 import os import re def dow(url): return urllib2.urlopen(url).read() str=dow('http://theater.mtime.com/China_Beijing/') lst=re.findall('\d+家影院上映\d+场',str) url = 'http...
阅读全文
posted @ 2017-06-02 14:18 Doublekai
阅读(590)
评论(2)
推荐(1)
2017年5月20日
python(万年历的实现 含运行结果)
摘要: #coding:utf-8 def leap_year(year):#判断平瑞年 if year%4==0 and year%100!=0 or year%400==0: return True else: return False def getMonthDays(year,month):#得到每个年份每月的天数 days = 31 ...
阅读全文
posted @ 2017-05-20 11:01 Doublekai
阅读(9932)
评论(1)
推荐(0)
2017年5月15日
python(初学提取html页面元素,借用老师)
摘要: -*- coding: utf-8 -*- import urllib2 import os def mean_audience_score(id): arv = 0.0 sc_url = "http://movie.mtime.com/" + id + "/" sc_req = urllib2.Request(sc_url, headers={'User-Agen...
阅读全文
posted @ 2017-05-15 18:39 Doublekai
阅读(3401)
评论(0)
推荐(0)
2017年4月24日
c语言(二叉树的操作)
摘要: #include "stdio.h" #include "malloc.h" #include "stdlib.h" typedef struct BTNode { int data; struct BTNode *Lchild,*Rchild; }BTree; //初始化 BTree * Ini_BTNode() { BTree *bt ; int a; ...
阅读全文
posted @ 2017-04-24 10:09 Doublekai
阅读(4444)
评论(0)
推荐(0)
2017年4月17日
c语言稀疏矩阵的实现
摘要: #include "stdio.h" #define maxsize 10 typedef struct { int i,j; //非零元素的行、列 int v; //非零元素的值 }Triple; typedef struct { Triple data[maxsize]; int m,n; //矩阵的行、列 }TSMarix; InitTr...
阅读全文
posted @ 2017-04-17 10:27 Doublekai
阅读(4830)
评论(0)
推荐(0)
1
2
3
下一页
公告