<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>测试</title>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
</head>
<body>
<div id="weibocon"></div>
<script src="weiboapi.js"></script>
<script>
window.onload = weibo;
var wb = new weibo();
wb.init(
null,
"img",//参数说明:text-文本微博;img-选择图片发微博;trend-获取话题列表
{
topic:encodeURI("装修"),//当第2个参数为trend时起作用
count:10,
length:30,
zturl:document.location.href//也可以指定专题链接,如:http://jiaju.sina.com.cn/news/zt/zturl.html
}
);
wb.showmsg();
</script>
</body>
</html>
|