Fork me on GitHub

随笔分类 -  脚本

摘要:HTTP 1.1状态代码及其含义 状态代码 状态信息 含义 100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分。(HTTP 1.1新) 101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议(HTTP 1.1新)200 OK 一切正常,对GET和POST请求的应答文档跟在后面。 201 Created 服务器已经创建了文档,Locati... 阅读全文
posted @ 2014-04-21 14:01 乔闻 阅读(424) 评论(0) 推荐(0) 编辑
摘要:$(function () { $(".leftsecoundtitle").css({ "display": "none" }); $("#id1").toggle( function () { $("#id1 + .leftsecoundtitle").slideDown("normal"); $(this).css("background", "#E1E1E1"); //$(".zsfl-... 阅读全文
posted @ 2014-04-21 13:57 乔闻 阅读(162) 评论(0) 推荐(0) 编辑
摘要:document.getElementById('Content_Right_id').style.width = document.documentElement.clientWidth - 250 + 'px'; 阅读全文
posted @ 2014-04-21 13:56 乔闻 阅读(7134) 评论(1) 推荐(0) 编辑
摘要:页头ValidateRequest="false" KindEditor.ready(function (K) { window.editor = K.create('#', { uploadJson: '../Scripts/KindEditor/asp.net/upload_json.ashx', fileManagerJson: '../Scripts/KindEditor/asp.... 阅读全文
posted @ 2014-04-21 13:55 乔闻 阅读(215) 评论(0) 推荐(0) 编辑
摘要:window.onload = function () { document.getElementById('Select1').onclick = function () { var index = document.getElementById('Select1').selectedIndex; var a = document.getElementById('Text1'); a.setAt... 阅读全文
posted @ 2014-04-21 13:54 乔闻 阅读(320) 评论(0) 推荐(0) 编辑
摘要:$('#cc').combobox('setValue','bitem3').combobox('setText','bitem3') 阅读全文
posted @ 2014-04-21 13:53 乔闻 阅读(1147) 评论(0) 推荐(0) 编辑
摘要:Untitled Page 阅读全文
posted @ 2014-04-21 13:51 乔闻 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-21 13:50 乔闻 阅读(239) 评论(0) 推荐(0) 编辑
摘要://缩放和布局$(window).resize(function () { $('#BZ_Content').datagrid('resize', { width: getWidth(0.992) })});function getWidth(percent) { if ($("body").width() < 950) { return 950; } else return $("body").... 阅读全文
posted @ 2014-04-21 13:49 乔闻 阅读(268) 评论(0) 推荐(0) 编辑
摘要:function FormButton() { $.ajax({ type: "post", url: "Competition.ashx", data: "name=John&location=Boston", success: function (msg) { alert("Data Saved: " + msg); } });} 阅读全文
posted @ 2014-04-21 13:48 乔闻 阅读(87) 评论(0) 推荐(0) 编辑
摘要:window.onload = function () { document.getElementById('text1').onblur = function () { if (isNaN(document.getElementById('text1').value)) { 验证输入的字符是否为数字 al... 阅读全文
posted @ 2014-04-21 13:33 乔闻 阅读(267) 评论(0) 推荐(0) 编辑