上一页 1 ··· 6 7 8 9 10
摘要: C#调用存储过程 using System.Data.SqlClient; //如果存储过程没有输入和输出参数,而且不返回查询结果 SqlCommand cmd = new SqlCommand("存储过程名", conn); cmd.CommandType = CommandType.Stored 阅读全文
posted @ 2020-03-06 11:45 阿东123 阅读(2613) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 2 3 <html> 4 <head> 5 <title>select</title> 6 7 .list,li{ 阅读全文
posted @ 2020-02-11 11:39 阿东123 阅读(12601) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 拖动(Draggable) - 默认功能</title> <link rel="stylesheet" href="//apps.bdimg 阅读全文
posted @ 2020-02-04 11:11 阿东123 阅读(325) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-02-03 15:56 阿东123 阅读(134) 评论(0) 推荐(0) 编辑
摘要: $.ajax()方法详解 jquery中的ajax方法参数总是记不住,这里记录一下。 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和del 阅读全文
posted @ 2020-02-03 11:44 阿东123 阅读(351) 评论(0) 推荐(0) 编辑
摘要: $.each()是对数组,json和dom结构等的遍历,说一下他的使用方法吧。 1、遍历一维数组 var arr1=['aa','bb','cc','dd']; $.each(arr1,function(i,val){ //两个参数,第一个参数表示遍历的数组的下标,第二个参数表示下标对应的值 con 阅读全文
posted @ 2020-02-03 11:42 阿东123 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 今天在学习使用echarts生成各种图表。 然后在使用pie图时出现我无论怎么更改代码中的颜色,pie图中各块的颜色都十分相近,几乎没法区别块与块之间的区别,如下图: 在下图中,除了其中一块的是红色的,其它都是十分相近的白色,然后我无论怎么更改代码中的rgb值,几乎都没有影响到这个图中的主要颜色 然 阅读全文
posted @ 2019-07-23 13:02 阿东123 阅读(2087) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI.WebControls; 6 7 namespace WMES.Class 8 { 9 public static class GridVi... 阅读全文
posted @ 2019-07-01 16:52 阿东123 阅读(860) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10