示例 1 : 获取 通过attr()获取一个元素的属性 <script src="https://how2j.cn/study/jquery.min.js"></script> <script> $(function(){ $("#b1").click(function(){ alert("alig ...
分类:
Web程序 时间:
2020-08-03 09:50:25
阅读次数:
213
(function($) { $.fn.extend({ slider: function(options) { var settings = $.extend({ speed: 500 }, options); return this.each(function() { var slidercon ...
分类:
Web程序 时间:
2020-08-03 00:52:52
阅读次数:
375
<!DOCTYPE html><html> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script type="text/javascript" src="js/jquery.min.js" ...
分类:
Web程序 时间:
2020-08-03 00:51:28
阅读次数:
241
示例 1 : 增加class 通过addClass() 增加一个样式中的class <script src="https://how2j.cn/study/jquery.min.js"></script> <script> $(function(){ $("#b1").click(function( ...
分类:
Web程序 时间:
2020-08-01 12:32:55
阅读次数:
98
Web 开发人员的移动Blazor开发系列 1 Blazor 移动开发-起步 译自: https://chrissainty.com/getting-started-with-mobile-blazor-bindings/ 这是系列博客文章中的第一篇,将探索新的实验性Mobile Blazor Bi ...
分类:
移动开发 时间:
2020-07-31 12:31:27
阅读次数:
144
from selenium import webdriver mobileEmulation = {'deviceName' :'Galaxy S5'} option = webdriver.ChromeOptions() option.add_experimental_option('mobile ...
分类:
移动开发 时间:
2020-07-30 14:25:16
阅读次数:
98
控制台报 java.io.FileNotFoundException: \src\main\webapp\WEB-INF\dispatcherServlet-servlet.xml (系统找不到指定的路径。) 解决方法: 在@ContextConfiguration中把路径检查以下,出现了如下图错误 ...
分类:
移动开发 时间:
2020-07-30 14:03:55
阅读次数:
101
<!DOCTYPE html><html> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script src="js/jquery-2.1.4.min.js" type="text/javas ...
分类:
Web程序 时间:
2020-07-30 10:41:52
阅读次数:
98
应用技术:jQuery、tooltip、align-items 代码: 1、样式设置 <style> .year-outer-bar { position: relative; display: flex; align-items: flex-end; 侧轴终点对齐弹性盒的各项元素,必须与flex搭 ...
分类:
其他好文 时间:
2020-07-29 21:23:02
阅读次数:
75
需求:项目要支持大文件上传功能,经过讨论,初步将文件上传大小控制在500M内,因此自己需要在项目中进行文件上传部分的调整和配置,自己将大小都以501M来进行限制。 第一步: 前端修改 由于项目使用的是BJUI前端框架,并没有使用框架本身的文件上传控件,而使用的基于jQuery的Uploadify文件 ...
分类:
Web程序 时间:
2020-07-29 14:54:56
阅读次数:
107