Web
Web
大坤_
小孩子喜欢抓自己喜欢的,而成年人只抓最容易得手的。
展开
-
判断window.open打开的页面是否关闭
var A = 'open';function qqLogin(){ //以下为按钮点击事件的逻辑。注意这里要重新打开窗口 //否则后面跳转到QQ登录,授权页面时会直接缩小当前浏览器的窗口,而不是打开新窗口 A=window.open("/oauth/index.php","TencentLogin", "width=450,height=320,menubar=0,s...原创 2020-01-14 22:49:04 · 1852 阅读 · 1 评论 -
获取屏幕的宽高
function getInfo(){var s = "";s += " 网页可见区域宽:"+ document.body.clientWidth+" ";s += " 网页可见区域高:"+ document.body.clientHeight+" ";s += " 网页可见区域宽:"+ document.body.offsetWidth + " (包括边线和滚动条的宽)"+" ";s...原创 2020-01-14 22:48:34 · 139 阅读 · 1 评论 -
js动态时间
<html> <head> <title>网页中动态的显示系统日期时间</title> <script language="JavaScript"> function startTime() { var today=new Date();//定义日期对象 var yyyy = today...原创 2020-01-14 22:26:46 · 252 阅读 · 1 评论 -
post跳转
$.extend({ StandardPost:function(url,args){ var body = $(document.body), form = $("<form method='post'></form>"), input; form.attr({"action":url...原创 2020-01-14 21:40:07 · 172 阅读 · 0 评论 -
javascript语法
class点击事件$(".fulldate").click(function(){ var e = $(this);var htmls = e.parent("span").text();if (e.attr("checked")=="checked"){ console.log('选中');} })数组转字符串 字符串转数组vara, b;a = newArr...原创 2020-01-14 18:31:55 · 139 阅读 · 0 评论 -
ajax数据请求
每5秒执行一次函数setInterval("run()",5000);ajax请求$.ajax({ url: "/admin/rtq/modulars/goodselementrelation/getdy", data: {}, type: "POST", dataType : "json", success: function (data) { ...原创 2020-01-14 18:23:01 · 82 阅读 · 1 评论 -
javascript事件
滚动条到底事件$(window).scroll(function () {if ($(window).scrollTop() == $(document).height() - $(window).height()) {my_history('<?php echo $token; ?>',page,pagesize);page++; }});enter 事件&l...原创 2020-01-14 18:21:12 · 97 阅读 · 1 评论 -
网站基础设置
网站ico<link rel="shortcut icon" type="image/x-icon" href="/public/images/ico_16.ico" media="screen" />基础搜索http://www.sengo.cntitle: 森果-汇聚一切美好 keywords: 森果、森果网、SENGO des...原创 2020-01-14 18:18:58 · 173 阅读 · 0 评论 -
CSS3瀑布流布局
【代码】CSS3瀑布流布局。原创 2020-01-14 18:12:22 · 306 阅读 · 1 评论