Jquery
金双林
C# 编程爱好者
展开
-
ajax标准格式
jquery向服务器发送一个ajax请求后,可以返回多种类型的数据格式,包括:html,xml,json,text等。$.ajax({ url:"http://www.test.com", //请求的url地址 dataType:"json", //返回格式为json async:true,//请求是否异步,默认为异步,这也是ajax重要特性原创 2016-07-29 11:41:45 · 4501 阅读 · 1 评论 -
点击按钮滚动至顶部
浏览网页鼠标滚动到网页底部后,在滚上去操作跟不友好,加上下面的代码,点击按钮可以实现一键滚到页面顶部,试试吧。 function ToTop() { $('html, body').animate({ scrollTop: 0 }, 'slow'); }原创 2016-08-04 18:31:34 · 568 阅读 · 0 评论 -
table 左右拉伸效果
(function ($) { $.fn.tableresize = function (options) { var defaults = { //当table的宽度到达默认最大值时,是否继续增大以至于出现横向滚动条 resizeTable: true }; var opts = $.exte原创 2016-08-04 18:28:01 · 3612 阅读 · 0 评论 -
js 实现二维码
#qrCodeDiv { width:400px; height:400px; margin-left:400px; margin-top:150px; } jQuery(function () { $("原创 2016-08-04 18:26:08 · 324 阅读 · 0 评论 -
.NET 实现页面点赞功能
$(function () { $("#clickzan").click(function () { getcookie("userip"); }) }) function getcookie(objname) {//获取指定名称的cookie的值 var arrstr = document.cookie.sp原创 2016-08-04 18:23:56 · 10725 阅读 · 0 评论 -
tmpl 模板化引擎加载数据 Jquery
@{ ViewBag.Title = "GetCartList";}@section HeaderScripts{ //必须引用此js $(function () { $.ajax({ type: "Get", url: "GetTest",原创 2016-08-04 18:22:04 · 679 阅读 · 0 评论 -
页面加载百度地图
html{ height: 100%;} body{ height: 100%; margin: 0px; padding: 0px; } #container { height: 100%; } function initialize() { var mp = new BMap.Map('map')原创 2016-08-04 18:19:38 · 298 阅读 · 0 评论 -
jquery文本向上滚动代码带上下翻转按钮
jquery文本向上滚动代码带上下翻转按钮 body { color: #333; font-size: 13px; } h3, ul, li { margin: 0; padding: 0;原创 2016-08-04 18:17:27 · 2181 阅读 · 0 评论 -
.net Response.ContentType获取返回类型及数据对应的详细列表
'ez' => 'application/andrew-inset', 'hqx' => 'application/mac-binhex40', 'cpt' => 'application/mac-compactpro', 'doc' => 'application/msword', 'bin' => 'application/octet-stream', 'dms' => '原创 2016-08-04 18:15:41 · 2272 阅读 · 0 评论 -
文字向左无缝滚动
下面是文字向左无缝滚动的实例,仅供参考。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"&...原创 2016-08-04 18:11:16 · 3086 阅读 · 0 评论 -
Excel导出功能
值得收藏的Excel导出功能:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data.SqlClient;using System.Data;using Microsoft.Office;using Microsoft.Office.Int原创 2016-08-04 18:05:04 · 292 阅读 · 0 评论 -
几种常见的正则表达式验证
一般验证有很多,下面是几种常会遇到的验证。//时间private const string REG_DATE = @"^(\d{2}|\d{4})((0[1-9])|(1[0-2]))((0[1-9])|((1|2)[0-9])|30|31)$";//电话 private const string REG_PHONE = @"^((0[0-9]{2,3}){0,1}([0-原创 2016-08-04 18:40:50 · 591 阅读 · 0 评论