摘要: JQuery有几种选择器? a、基本选择器:#id,class,element,*; b、层次选择器:parent > child,prev + next ,prev ~ siblings c、基本过滤器选择器::first,:last ,:not ,:even ,:odd ,:eq ,:gt ,: 阅读全文
posted @ 2020-11-24 18:06 clearlove007 阅读(63) 评论(0) 推荐(0) 编辑
摘要: JS中如何将页面重定向到另一个页面? a、使用 location.href:window.location.href =“https://www.baidu.com/” b、使用location.replace:window.location.replace(" https://www.baidu. 阅读全文
posted @ 2020-11-24 18:05 clearlove007 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 查询“001”课程比“002”课程成绩高的所有学生的学号; select a.s_id from (select s_id,score from SC where C_ID='001') a,(select s_id,scorefrom SC where C_ID='002') b where a. 阅读全文
posted @ 2020-11-24 18:02 clearlove007 阅读(77) 评论(0) 推荐(0) 编辑