- 博客(34)
- 资源 (9)
- 收藏
- 关注
转载 jquery calendar
/**the script only works on "input [type=text]"**/// don't declare anything out here in the global namespace(function($) { // create private scope (inside you can use $ instead of
2011-11-29 00:23:47 1232
转载 jquery ajax
该函数是简写的 Ajax 函数,等价于:$.ajax({ type: 'POST', url: url, data: data, success: success, dataType: dataType});根据响应的不同的 MIME 类型,传递给 success 回调函数的返回数据也有所不同,这些数据可以是 XML 根元素、文本字符串、JavaScript 文件或者
2011-11-28 00:46:13 505
原创 javascript ie ff2
3. 访问和设置class属性【分析说明】同样由于class是Javascript保留字的原因,这两种浏览器使用不同的 JavaScript 方法来获取这个属性。IE8.0之前的所有IE版本的写法:var myObject = document.getElementById("header");var myAttribute = myObject.getAttribute("cla
2011-11-28 00:38:48 575
原创 javascript IE FF
mX = event.x ? event.x : event.pageX;document.onkeydown = function(event){//alert(123);e = window.event || event;alert("e.kedyCode="+e.keyCode);} 另外,在FF和ie中都可以使用window.top.do
2011-11-28 00:21:13 404
转载 窗口iframe
做项目的时候,需要用到一个窗口中的子窗口iframe需要取到父窗口的值,弄了好久,都没找到解决方法,幸好看到了这篇博文给了我启发,现转载如下。看到这篇文章中介绍的子窗口刷新父窗口用的方法是parentWin.location.reload(); 可是我的不行,我写了个parent.parent.location.reload(); 才行的。子窗口调用父窗口的中的JS
2011-11-26 00:32:37 644
转载 传值
父窗体function OpenWindow(){ window.open('child.html'); } function setValue(m_strValue){ document.getElementById("txt_Value").value = m_strValue; } 子窗体function CloseWind(){ op
2011-11-26 00:30:47 298
原创 globar.js
// JavaScript Documentwindow.onload = function(){//子菜单添加事件var menuList = document.getElementById("subMenu").getElementsByTagName("a");for(var i=0;iEventUtil.addEventHandler(menuList[i],"cl
2011-11-26 00:06:54 324
原创 转载:JQuery解析Json
//普通属性判断if($('#btn_customer').attr('title').replace(/(^\s*)|(\s*$)/g, "") == "2"){ //返回true}else{ //false}//checkbox if($("#appo").is(":checked")){ //选中true }esle{ /
2011-11-25 23:32:00 299
原创 javascript里的document.all用法
document.title //设置文档标题等价于HTML的标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //激活链接(焦点在此链接上)的颜色doc
2011-11-25 22:08:59 545
原创 javascript兼容FF和IE
1. document.form.item 问题问题:代码中存在 document.formName.item("itemName") 这样的语句,不能在FF下运行解决方法:改用 document.formName.elements["elementName"]2. 集合类对象问题问题:代码中许多集合类对象取用时使用(),IE能接受,FF不能解决方法:改用
2011-11-25 22:05:39 430
转载 .动态创建selectjs 操作select和option(转载)
1.动态创建select function createSelect(){var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(mySelect); }2.添
2011-11-24 00:55:15 513
原创 在ie6下,我们使用select的时候
在ie6下,我们使用select的时候,会发现不管对上层的div的z-index给多大的值,select总是要从下面冒出来,在网上找了一下,主要解决方法有两种:1,通过iframe遮盖select。2,通过js控制select的显示和隐藏,不过当div只是遮住select的一半时,整个都会隐藏,不适合一些情况。我们今天要解决的是通过iframe遮盖select。1,iframe可以
2011-11-23 18:10:57 715
原创 关于div覆盖select标签的问题
关于div覆盖select标签的问题苹''''''''''''''''''''''''''果香''''''''''''''''''''''''''蕉西''''''''''''''''''''''''''瓜显示DIV" onclick="showIframe()"/>显示DIV" onclick="closeIframe()"/>
2011-11-22 19:57:09 1043
原创 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose
"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> "Content-Type" content="text/html; charset=UTF-8"> 关于div覆盖select标签的问题 "text" name="userName" value="" style=
2011-11-22 19:56:41 5844
原创 使用div+css模拟select功能与效果
colee做的模拟select效果* { margin: 0px; padding:0;}input,img {vertical-align:middle;}.Option .on { background:#2F67D0; color:#fff;}-->function CoLeeSelect(thisObj){ var thisinput =
2011-11-22 19:53:17 3369
原创 JQuery是个不错的框架,以下总结了5个每个网站开发者都应该知道的小技巧:
JQuery是个不错的框架,以下总结了5个每个网站开发者都应该知道的小技巧: 1.禁用右键菜单 $(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; });}); 2.让字体闪烁 jQuery.fn.flash
2011-11-22 11:31:21 352
原创 - 屏蔽网页右鍵,适用于IE6,IE7,IE8,FireFox,谷歌Chrome浏览器
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">function clickIE4(){ if (event.button==2){ return false; }} function clickNS4(e){ i
2011-11-22 11:18:46 601
原创 ie6 ie7 ie8 ff 测试页
区别IE6、IE7、IE8、FireFox的CSS hack#test,#note{margin:0 auto;text-align:center; }.note{ text-align:left; text-indent:40px;}#test {width:200px;height:30px;border: 1px solid #000000;c
2011-11-17 01:48:07 399
原创 jQuery移动ListBox内容
jQuery移动ListBox内容 h1{color:Green;} #listLeft{width:100px;} .normal{ color:Blue; font-weight:bold; font-size:14px; background:#FF9933; width: 95
2011-11-16 23:06:53 756
原创 marquee
无标题文档 var scrlSpeed=1;var interval =0; // decreasing speed for mozilla scrlSpeed=(document.all)? scrlSpeed : Math.max(1, scrlSpeed-1) function initScroll(container,object){ if (d
2011-11-11 01:52:41 289
原创 abc
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> Div+Css+JS替代Marquee滚动效果(上) -- 无缝滚动 .Mar { background: #FFF
2011-11-08 15:34:50 332
原创 模仿QQ播放器,歌曲名超出长度,文字自动左右滚动
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">div+js实现首尾相连循环滚动效果只想一生跟你(粤)走-张学友var flag = true;var total = 0;var timeFlag =0;function scrol
2011-11-02 00:50:34 559
原创 sfsdf
function getStrLength(str) { var cArr = str.match(/[^\x00-\xff]/ig); return str.length + (cArr == null ? 0 : cArr.length); } var jmz = {};jmz.GetLength = function(str) {
2011-10-30 17:31:06 382
转载 sfd
滚动速度,越小速度越快function getStrLength(str) { var cArr = str.match(/[^\x00-\xff]/ig); return str.length + (cArr == null ? 0 : cArr.length); }超级长的文字啊。。。。。超级长的文字啊。。。。。超级长的文字啊。。。。。超
2011-10-30 13:18:27 392
原创 lrc效果
function LRCPlayer(wmp, strLRC, container, width, height, color1, color2) {this.wmp = wmp;this.height = height;this.checkInterval = 0;this.transInterVal = 0;this.currentFocus = -1;var
2011-10-29 01:40:29 366
转载 js 获取鼠标的位置
js 获取鼠标的位置 (2009-12-14 10:51:39)转载标签: 鼠标位置 获取鼠标位置 event 杂谈分类: WEB开发用 javascript 获取当页面上鼠标(光标)位置在许多情况下都会用到,比如拖放,悬停提示(tooltip) 等等。当然,这里我们依然要面对浏览器
2011-10-28 21:14:43 689
原创 lrc.js
function LRCPlayer(wmp, strLRC, container, width, height, color1, color2) {this.wmp = wmp;this.height = height;this.checkInterval = 0;this.transInterVal = 0;this.currentFocus = -1;var
2011-10-26 23:57:47 582
原创 player.js
!function() {var code = [', ' width="230" height="64">', '', '', '', '', "", "", "", "", "", "", "", ""// , "", ""].join("");document.write(code);}();var
2011-10-26 23:57:09 937
原创 .html
Winguo [ti:潮汕谣][ar:方雨儿][al:潮汕谣][by:iscripts.org][03:54.71][01:49.87][00:14.45]门前一丛梨[03:58.69][01:54.22][00:18.48]数来数去三百个[04:03.14][01:58.59][00:23.05]门脚一丛柑[04:07.5
2011-10-26 23:56:29 404
原创 dom_pub.js
// JavaScript Document//DOM处理---开始----// add by sugy//获取对象function $(element){ if (document.getElementById) { return extend(document.getElementById(element),domMethod); } els
2011-10-24 08:53:48 341
原创 play
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">播放器 Do not ask her that... 00:00 00:00
2011-10-24 08:52:22 696
jquery CODE.zip
2011-11-16
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人