摘要: import java.io.BufferedWriter; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.util.List; import 阅读全文
posted @ 2018-04-11 19:51 Python研究者 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 搜索歌曲 function go() { var val = document.getElementById("name").value; let url = 'https://c.y.qq.com/soso/fcgi-bin/search_for_qq_cp?g_tk=5381&uin=0&for 阅读全文
posted @ 2018-04-11 17:20 Python研究者 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 距离左边和上边 style="margin-left:100px;margin-top:10px" 设置相对位置 position:absolute; position:relative;、 设置背景颜色 background-color:red; 清空ul的内容 $("ul").find("li" 阅读全文
posted @ 2018-04-11 16:24 Python研究者 阅读(179) 评论(0) 推荐(0) 编辑
摘要: html代码 <audio id="myaudio" src="http://ws.stream.qqmusic.qq.com/C100003R74Cn0JR4O6.m4a?fromtag=0" controls="controls"> </audio> js代码 阅读全文
posted @ 2018-04-11 16:01 Python研究者 阅读(3950) 评论(0) 推荐(0) 编辑
摘要: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 <%@page import="java.util.ArrayList"%> <%@ page language="java 阅读全文
posted @ 2018-04-11 15:53 Python研究者 阅读(4548) 评论(0) 推荐(0) 编辑
摘要: https://www.52pojie.cn/thread-591761-1-2.html 阅读全文
posted @ 2018-04-11 08:46 Python研究者 阅读(665) 评论(0) 推荐(0) 编辑
摘要: class student(): def __init__(self,age,sex): self.age = age self.sex = sex #self.__sex =sex 表示私有化 def missing(self): if self.age =='': print("no") els 阅读全文
posted @ 2018-04-11 08:20 Python研究者 阅读(355) 评论(0) 推荐(0) 编辑