上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 36 下一页
摘要: https://www.runoob.com/python/att string format.html print(1263/37226305 10000) 0.3392762187920611 ret='{:.2%}'.format(1263/37226305) 百分之 0.00% print( 阅读全文
posted @ 2020-01-14 23:19 hanfe1 阅读(191) 评论(1) 推荐(0) 编辑
摘要: 在网上找到了解决方案,使用下面的代码,文件名成功显示了中文。 from django.utils.encoding import escape_uri_path from django.http import HttpResponse def test(request): file_name = ' 阅读全文
posted @ 2020-01-07 14:15 hanfe1 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/summer cool/p/3885384.html 阅读全文
posted @ 2020-01-05 17:03 hanfe1 阅读(161) 评论(0) 推荐(0) 编辑
摘要: zip()函数: zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。 如果各个迭代器的元素个数不一致,则返回列表长度与最短的对象相同,利用 * 号操作符,可以将元组解压为列表。 zip 方法在 Python 2 和 Python 3 中的不 阅读全文
posted @ 2019-12-27 14:24 hanfe1 阅读(7296) 评论(0) 推荐(0) 编辑
摘要: JSON.stringify()的作用是将 JavaScript 值转换为 JSON 字符串, 而JSON.parse()可以将JSON字符串转为一个对象。 简单点说,它们的作用是相对的,我用JSON.stringify()将对象a变成了字符串c,那么我就可以用JSON.parse()将字符串c还原 阅读全文
posted @ 2019-12-23 23:22 hanfe1 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 作业题目:实现“todolist项目” 作业需求: 基础需求:85%参考链接http://www.todolist.cn/1. 将用户输入添加至待办项2. 可以对todolist进行分类(待办项和已完成组),用户勾选既将待办项分入已完成组,也可以将已完成变成未完成3. todolist的每一项可删除 阅读全文
posted @ 2019-12-23 17:54 hanfe1 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 11.5.0 bootstrap 11.5.1 bootstrap的介绍和响应式 http://book.luffycity.com/python book/95 bootstrap/951 bootstrapde jie shao.html CSS3 的 @media 查询 定义和使用 使用 @m 阅读全文
posted @ 2019-12-22 18:00 hanfe1 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 11.4.0 jQuery 11.4.1 基本知识 定义: jQuery是一个快速,小巧,功能丰富的JavaScript库 作用:它通过易于使用的API在大量浏览器中运行,使得HTML文档遍历和操作,事件处理,动画和Ajax变得更加简单 jQuery使用 $ 符号,占用两个变量:$ 和 jQuery 阅读全文
posted @ 2019-12-19 17:08 hanfe1 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 第十一章 前端开发-JavaScript 11.3.1 js引入方式 行内样式 <p id="" class="" style="" onclick="console.log(2);">mjj</p> 内嵌式 <script type="text/javascript"> // js代码 </scr 阅读全文
posted @ 2019-12-18 20:46 hanfe1 阅读(211) 评论(0) 推荐(0) 编辑
摘要: js特效和15个小demo 代码如下:images文件夹未上传 1.图片切换: <!DOCTYPE html> <html> <head> <title>图片切换</title> </head> <body> <img src="images/1.jpg" width="400" height="3 阅读全文
posted @ 2019-12-18 20:18 hanfe1 阅读(930) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 36 下一页