`
malson
  • 浏览: 5897 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论
文章列表

js操作cookie

    博客分类:
  • js
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>   <title> New Document </title>   <meta name="Generator" content="EditPlus">   <meta name="Author&q ...
Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Private Declare Sub Sleep Lib & ...
三种方法: window.open();创建一个显示HTML内容的子页面 window.showModalDialog();创建一个显示HTML内容的模态对话框,必须关闭弹出子窗口才能对父页面进行操作 window.showModelessDialog();创建一个显示HTML内容的非模态对话框,可以不关闭弹出子窗口继续对父页面进行操作 参数: window.open(pageURL,name,features,replace); 说明:新建一个窗口或者查找一个已经存在浏览器窗口 pageURL 为子窗口路径 name 为子窗口句柄,设置新窗口的名称,如果指定了一个已经存在的窗口,则返回对该 ...
http://blog.csdn.net/wjc19911118/article/details/7643931 http://linder0209.iteye.com/category/58900 http://zhidao.baidu.com/question/406416138.html http://zhidao.baidu.com/question/229591219.html http://zhidao.baidu.com/question/317091269.html http://zhidao.baidu.com/question/247542851.html htt ...
EXT render handler listeners handler一般是点击按钮时执行 render方法是组件渲染时执行 listeners表示监听,写一个例子你就知道了: Ext.create('Ext.button.Button',{      text:'click',      listeners:{click:function(){          alert('hellow')     }} ...
setTimeout和setInterval的使用 这两个方法都可以用来实现在一个固定时间段之后去执行JavaScript。不过两者各有各的应用场景。 方 法 实际上,setTimeout和setInterval的语法相同。它们都有两个参数,一个是将要执行的代码字符串,还有 ...
Global site tag (gtag.js) - Google Analytics