<!doctype html>
<html class="no-js fixed-layout">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>天气</title>
</head>
<body>
<div class="top-tool">
<span id="sj"></span><span id="weather"><img width="16px" height="16px" src=""></span>
<form action="/Search" method="get" id="qform" class="search-form" style="text-align:right;display:inline;float:right;padding-right:10px;" target="_blank">
<span class="round">
<input name="keywords" id="q" tabindex="1" class="input-key search-q ac_input" value="" maxlength="100" autocomplete="off">
</span> <span class="button">
<input type="submit" tabindex="2" id="su" value="搜&nbsp;&nbsp;索" class="ui-btn" style="padding: 0px 5px;">
</span>
</form>
</div>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
<script type="text/javascript">
function showLocale(objD) {
var str, colorhead, colorfoot;
var yy = objD.getYear();
if (yy < 1900) yy = yy + 1900;
var MM = objD.getMonth() + 1;
if (MM < 10) MM = '0' + MM;
var dd = objD.getDate();
if (dd < 10) dd = '0' + dd;
var hh = objD.getHours();
if (hh < 10) hh = '0' + hh;
var mm = objD.getMinutes();
if (mm < 10) mm = '0' + mm;
var ss = objD.getSeconds();
if (ss < 10) ss = '0' + ss;
var ww = objD.getDay();
if (ww == 0) colorhead = "";
if (ww > 0 && ww < 6) colorhead = "";
if (ww == 6) colorhead = "";
if (ww == 0) ww = "星期日";
if (ww == 1) ww = "星期一";
if (ww == 2) ww = "星期二";
if (ww == 3) ww = "星期三";
if (ww == 4) ww = "星期四";
if (ww == 5) ww = "星期五";
if (ww == 6) ww = "星期六";
colorfoot = ""
str = colorhead + yy + "-" + MM + "-" + dd + " " + hh + ":" + mm + ":" + ss + " " + ww + colorfoot;
return (str);
}
function tick() {
var today;
today = new Date();
document.getElementById("sj").innerHTML = showLocale(today);
window.setTimeout("tick()", 1000);
}
tick(); function findWeather() {
var cityUrl = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js';
$.getScript(cityUrl, function (script, textStatus, jqXHR) {
var citytq = remote_ip_info.city; // 获取城市 citytq = "郑州";
var url = "http://php.weather.sina.com.cn/iframe/index/w_cl.php?code=js&city=" + citytq + "&day=0&dfc=3";
$.ajax({
url: url,
dataType: "script",
scriptCharset: "gbk",
success: function (data) {
var _w = window.SWther.w[citytq][0];
var _f = _w.f1 + "_0.png";
if (new Date().getHours() > 17) {
_f = _w.f2 + "_1.png";
}
var img = "<img width='16px' height='16px' src='http://i2.sinaimg.cn/dy/main/weather/weatherplugin/wthIco/20_20/" + _f
+ "' />";
var tq = "今日天气 : " + citytq + " " + img + " " + _w.s1 + " " + _w.t1 + "℃~" + _w.t2 + "℃ " + _w.d1 + _w.p1 + "级";
$('#weather').html(tq);
}
});
});
}
findWeather()
</script>
</body>
</html>

最新文章

  1. 1.4 jQuery方法,JSON介绍
  2. 使用QQ邮箱发送email(Python)
  3. iOS APP上架过程常见问题
  4. 剑指offer——树的子结构 (JAVA代码)
  5. js实现图片加载特效(从左到右,百叶窗,从中间到两边)
  6. Triangle leetcode
  7. Pojo类(plain ordinary java object)
  8. Atitit.office&#160;word&#160;&#160;excel&#160;&#160;ppt&#160;pdf&#160;的web在线预览方案与html转换方案&#160;attilax&#160;总结
  9. linux内核编译相关
  10. Form1和Form2的交互
  11. Hadoop MapReduce概念学习系列之mr程序组件全貌(二十)
  12. z470 装黑苹果 10.92
  13. GridView分页的实现
  14. C语言之ASCII码
  15. Unity3D移动端内存优化(NGUI方面)
  16. Eclipse指定JDK版本 Failed to load the JNI shared JVM.dll
  17. url地址栏拼接参数写法
  18. 201521123059 《Java程序设计》第七周学习总结
  19. mysql查询语句,通过limit来限制查询的行数。
  20. kdeplot(核密度估计图) &amp; distplot

热门文章

  1. Python自动化 【第十二篇】:Python进阶-MySQL和ORM
  2. XidianOJ 1041: Franky的游戏O
  3. 如何将Console application的Program函数变成支持async的?
  4. Log Buffer
  5. ConCurrent in Practice小记 (3)
  6. Activiti开发环境配置
  7. 服务器控件中使用&lt;%#...&gt;, JS和html控件中使用&lt;%=...&gt;
  8. AIDL和生成的java文件要分开存放,否则生成can&#39;t find symbol class
  9. select 选中 option的问题
  10. 抽象类&amp;接口