上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 68 下一页
index.phpotxfor.phpa.jsvar xmlHttp; //定义XMLHttpReqest对象function S_xmlhttprequest(){ if(window.ActiveXObject){ xmlHttp=new ActiveXObject('Microsoft.XMLHTTP'); }else if(window.XMLHttpRequest){ //如果浏览器支持XMLHttpRequest对象,创建ActiveXObject对象 xmlHttp=new XMLHttpRequest(); } } function fu... Read More
posted @ 2013-03-27 22:09 tinyphp Views(708) Comments(0) Diggs(0) Edit
QQ登录的思路:当qq登陆成功后,QQ会给我们返回一个唯一的用户标识:openId,当用户授权QQ时,判断if(已经有openId){ 跳转到登陆后的页面。 }else if(没有openId){ 跳转到注册页面->然后绑定->跳转到登陆后的页面 }绑定:将用户id和唯一标识关联,所有一键登录原理皆如此过程:1、实现QQ登录需要在QQ互联先创建应用:http://connect.qq.com/2、创建应用成功得到:APP ID 和 KEY3、确保要用得的API已激活,如下:4、下载相应... Read More
posted @ 2013-03-21 11:58 tinyphp Views(3229) Comments(0) Diggs(0) Edit
预览效果:代码: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>hover延迟效果</title> 6 <style type="text/css"> 7 *{ padding:0; margin:0; list-style:none;font-size:12px;} 8 .mytab { background:#FF9900; width: 600px; margin-top: Read More
posted @ 2013-03-20 18:32 tinyphp Views(2017) Comments(0) Diggs(0) Edit
<?if($_POST['submit']){ $ids=implode(',',$_POST['ids']); //print_r($ids); $sql="update `table` set `display`='0' where `id` in(".$ids.")"; echo $sql; }?><form method="post"><input type="text" value="1" n Read More
posted @ 2013-03-13 17:25 tinyphp Views(369) Comments(0) Diggs(0) Edit
为了更好的兼容,不是所有属性都能用setAttribute解决的,例如以下的(为什么加载了样式和层,部分效果失效?)设置样式:x.className="name';(为什么函数没有触发?)设置按钮的事件:x.onclick=func;(为什么文本框还是可以修改?)设置readonly只读:x.readOnly=true; Read More
posted @ 2013-03-08 17:47 tinyphp Views(135) Comments(0) Diggs(0) Edit
<iframe id="topNav" src="xx.php"></iframe><script>var topWin = window.top.document.getElementById("topNav").contentWindow;alert(topWin);</script> Read More
posted @ 2013-03-02 11:07 tinyphp Views(2145) Comments(0) Diggs(0) Edit
JS调用form.submit() 出现对象不支持此属性或方法的原因:因为网页代码里有一个submit按钮名字叫submit <input type="submit" name="submit" value="提交"/>只要把这个名称改一下,改成:<input type="submit" name="submit2" value="提交"/> 问题解决。 Read More
posted @ 2013-03-02 09:38 tinyphp Views(5450) Comments(0) Diggs(0) Edit
PHP 会在解析到文件尾自动视为有结束标签,而手工加结束标签的话,可能会出现一些意外的空格或其它字符输出,导致 Header() 之类的函数失败,而且会比加了?>结尾的解析快一些,所以大家都就把结束标签省了。当然这个必须是纯PHP页面才可以 Read More
posted @ 2013-02-21 15:10 tinyphp Views(1588) Comments(0) Diggs(0) Edit
新浪开放平台SDK下载 Read More
posted @ 2013-02-19 10:13 tinyphp Views(223) Comments(0) Diggs(0) Edit
在本地测试的话,把回调地址改为http://127.0.0.7,http://localhost备注:微博开放平台企业QQ支持 800013811开放平台论坛开发文档 Read More
posted @ 2013-02-18 21:02 tinyphp Views(315) Comments(0) Diggs(0) Edit
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 68 下一页