<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <a href="#bottm" name="top">返回顶部</a>
老师 锚点功能中的这个name 是我自己随便定义的还是固定的
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="js/jquery-1.9.1.js"></script> <script type="text/javascript"> $(function(){ $("#add").click(function(){ var p = $('<p>'+'照片:<input type="file" name="" id="" value="" />'+ '<input type="button" name="" class="del" value="删除" />'+'</p>') $("#in1").before(p) }) $(".del").click(function(){ this.remove() }) }) </script> </head> <body> <form> <p>用户名:<input type="text" /> </p> <p> 照片:<input type="file" name="" id="" value="" /> <input type="button" name="" id="add" value="添加" /> </p> <p><input type="button" name="in1" id="in1" value="提交" /> </p> </form> </body> </html>
老师,如何修改上面的代码,可以实现跟视频中一样的”删除“效果,就是不知道如果用以上代码,怎么传递”this“?
老师,关于异常机制,我有个问题
我想知道throw有什么意义,既然jvm都定义好异常了 发现异常要么向上抛,要么try-catch,还需要throw干啥!
无论throw引发的还是idea运行时异常报错程序都会终止,那么我直接看idea给的异常信息不就好了,为啥还要去特意写一段代码来显示的捕获异常信息,再去对这个异常处理,这不是多余的么
报这个错误
No suitable driver found for jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8
不能连上数据库
webdemo.zip
import scrapy class ZonghengSpider(scrapy.Spider): name = 'zongheng' allowed_domains = ['zongheng.com'] start_urls = ['http://www.zongheng.com/rank/details.html?rt=1&d=1&i=2&p=1'] def parse(self, response): names = response.xpath('//div[@class="rank_d_b_name"]/@title').extract() authors = response.xpath('//div[@class="rank_d_b_cate"]/@title').extract() print(names) print(authors) books = [] for name, author in zip(names, authors): books.append({ 'name': names, 'author': authors }) return books
scrapy crawl zongheng -o book.csv
为什么会运行好几遍?
老师,那个缓存对象不是最小都是-5嘛,为什么在python里面输入值是-4时结果还是True?
请问老师,怎么加视频中老师的百度云呀,想我看课程资料复习用
老师,现在很多公司用的都是github呢,有没有GitHub的快速教程分享?
我这里一样的前端控制器配置怎么没有无法识别$的问题呢
老师我这个是怎么回事 名字都是对的呀 可是就是提示找不到
老师为什么我运行的是10个一起出结果,sleep 3秒后 程序结束
# !/user/bin/env python3 # -*- coding: utf-8 -*- from threading import Thread from threading import BoundedSemaphore from time import sleep def an_jian(num): semaphore.acquire() print(f'第{num}个人通过安检') sleep(3) semaphore.release() if __name__ == '__main__': semaphore=BoundedSemaphore(10) for i in range(10): t = Thread(target=an_jian,args=(f'{i+1}',)) t.start()
老师 一定要写return吗 如果不写 会怎么样呢
老师,我这几处怎么报错了?是包导错了吗?
我在xml配置文件里配置的no-rollback-for好像不生效
非常抱歉给您带来不好的体验!为了更深入的了解您的学习情况以及遇到的问题,您可以直接拨打投诉热线:
我们将在第一时间处理好您的问题!
关于
课程分类
百战程序员微信公众号
百战程序员微信小程序
©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园网站维护:百战汇智(北京)科技有限公司 京公网安备 11011402011233号 京ICP备18060230号-3 营业执照 经营许可证:京B2-20212637