jquery mobile做新浪微博移动平台的客户端
本人web开发小白,js不是刚学先看看下面的代码<wb:login-button type="3,2" id= “btnStyle”>登录按钮</wb:login-button>
<script src="http://tjs.sjs.sinajs.cn/open/api/js/wb.js?appkey=3306312910" type="text/javascript"
>
</script>
<script>
function login(o){
alert(o.screen_name)
}
function logout(){
alert('logout');
}
function changeStyle() {
alert("asdf");
var btnStyle = document.getElementById("btnStyle").value;
var loginStyle = document.getElementById("loginStyle").value;
document.location.search = "btnStyle=" + btnStyle + "&loginStyle=" + loginStyle;
}
document.getElementById("btnStyle").value = 3;
document.getElementById("loginStyle").value = 2;
</script>
这是调用新浪微博js的sdk的登陆的代码,appkey也是我申请的就是点击按钮时弹不出新浪微博的登陆界面,我要实现http://jssdk.sinaapp.com/demo/button/loginButton.php界面的按钮的功能,多谢大神解决啊
你先在web页面上试试 看能成功吗 这个和web的代码一样,还没涉及jquery mobile的东西了就是登陆不了 iree 发表于 2013-10-27 22:27
这个和web的代码一样,还没涉及jquery mobile的东西了就是登陆不了
好好的阅读下新浪微博开发的api文档吧 跟着它做肯定不会错可能你哪里少弄了 恩我今天解决了 ,多谢你了啊
页:
[1]