现在的位置:首页 > 所有关于JS的文章
0

QQ新强行聊天(不用加好友)

作者:情留メ蚊子  发表于:2010年06月10日 21:15  分类:技术文档  2912 次阅读 
QQ新强行聊天(不用加好友)

function runEx(cod1) { var code = document.getElementById(cod1).value; if (code != "") { var newwin = window.open('', '', ''); newwin.opener = null; newwin.document.write(code); newwin.document.close() }}function doCopy(ID) { if (document.all) { textRange = document.getElementById(ID).crea

阅读全文...Tags:,

0

jQuery的RSS解析器jFeed

作者:情留メ蚊子  发表于:2009年07月09日 20:10  分类:资源共享  3273 次阅读 
jQuery的RSS解析器jFeed

jFeed 是一个通用的 RSS/ATOM 解析器jQuery插件 jFeed 支持 RSS 0.91, 0.92, 1.0, 2.0 和 Atom 1.0 等格式。   引用内容 使用方法: jQuery.getFeed(options); 参数: * url: the feed URL (required). * data: data to be sent to the server. See jQuery.ajax data property. * success: a function to be called if the request succee

阅读全文...Tags:, ,

0

jQuery插件:jQuery.include

作者:情留メ蚊子  发表于:2009年07月03日 22:28  分类:资源共享  3282 次阅读 
jQuery插件:jQuery.include

这个插件可以按你的需要加载javascript和css文件,也就是你不用在文件开始的时候就加载所有的js和css文件,加快文件在客户端的载入速度,当在需要的时候再加载所需的javascript和css文件。 其实这个插件的用法也挺简单:   程序代码 $.include('file/test.js')或$.include('file/test.css') 演示 当然若你一次想加载多个文件你也可以这

阅读全文...Tags:, ,

0

jQuery判断网页中的id是否有重复的

作者:情留メ蚊子  发表于:2009年06月29日 19:00  分类:技术文档  2664 次阅读 
jQuery判断网页中的id是否有重复的

/* 代码高亮 */.dp-highlighter{font-family: SimSun;font-size: 12px;background-color: #E7E5DC;width: 99%;overflow: auto;margin: 18px 0 18px 0 !important;padding-top: 1px;}.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span {margin: 0;padding: 0;border: none;}.dp-highlighter a{background: none;border: none;padding: 0;margin: 0;}.d

阅读全文...Tags:,

0

Cookie操作插件 jQuery.Cookie

作者:情留メ蚊子  发表于:2009年06月27日 22:12  分类:资源共享  4343 次阅读 
Cookie操作插件 jQuery.Cookie

备份一下,以后开发都要用到哈哈。 /* 代码高亮 */.dp-highlighter{font-family: SimSun;font-size: 12px;background-color: #E7E5DC;width: 99%;overflow: auto;margin: 18px 0 18px 0 !important;padding-top: 1px;}.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span {margin: 0;padding: 0;border: none;}.dp-highlighter a{background: none;bord

阅读全文...Tags:, , ,

0

JS里unicode和uxxxx的转换

作者:情留メ蚊子  发表于:2009年06月21日 16:29  分类:资源共享  2710 次阅读 
JS里unicode和uxxxx的转换

今天被一个问题困扰了。。在百度找了白天终于解决了。function runEx(cod1) { var code = document.getElementById(cod1).value; if (code != "") { var newwin = window.open('', '', ''); newwin.opener = null; newwin.document.write(code); newwin.document.close() }}function doCopy(ID) { if (document.all) {

阅读全文...Tags: