2017年6月8日
摘要: 要撮利用js获取url中参数名也参数值这个不多见了,但我今天需要这样操作,下面我来给大家介绍一下具体的实例方法。 在已知参数名的情况下,获取参数值,使用正则表达式能很容易做到。 js的实现方法如下: function getValue(url, name) { var reg = new RegEx 阅读全文
posted @ 2017-06-08 08:43 二代码农 阅读(2480) 评论(0) 推荐(0) 编辑
  2017年6月7日
摘要: using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Data.SqlClient;using System.Data;using System.Co 阅读全文
posted @ 2017-06-07 13:27 二代码农 阅读(709) 评论(0) 推荐(1) 编辑
摘要: package com.my.gethttpjsondata; import java.io.BufferedReader;import java.io.ByteArrayOutputStream;import java.io.InputStream;import java.io.InputStre 阅读全文
posted @ 2017-06-07 13:07 二代码农 阅读(2241) 评论(0) 推荐(0) 编辑
摘要: select OrderID,ProdDetailID from A 表A : OrderID,ProdDetailID 1 6 1 7 1 9 2 5 2 3 如:orderID=1 的列转行select STUFF((SELECT ','+ cast(ProdDetailID as varcha 阅读全文
posted @ 2017-06-07 11:24 二代码农 阅读(450) 评论(0) 推荐(0) 编辑