var btn1Obj = document.getElementById("btn1");举例:btn1Obj.onclick = method1;btn1Obj.onclick = method2;btn1Obj.onclick = method3;如果这样写,最终将会只有medhot3被执行使用attachEvent添加事件,如: attachEvent('onload'......|attachEvent("onclick".....写成这样:btn1Obj.attachEvent("onclick",meth Read More
posted @ 2013-01-12 15:03 tinyphp Views(768) Comments(0) Diggs(0) Edit
http://localhost/getDomainData.html<!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" > <meta http-equiv="Content-Type" content=&qu Read More
posted @ 2013-01-12 11:31 tinyphp Views(608) Comments(0) Diggs(0) Edit
date.html:放在127.0.0.3域名下<!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" xml:lang="en"><head> <meta http-equiv="Content Read More
posted @ 2013-01-11 18:19 tinyphp Views(1894) Comments(0) Diggs(0) Edit
<?php$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);echo json_encode($arr);?> 以上例程会输出:{"a":1,"b":2,"c":3,"d":4,"e":5}得到某值例子:<?php$arr = array ('a'=>1,'b'=>2,' Read More
posted @ 2013-01-10 17:41 tinyphp Views(3729) Comments(0) Diggs(0) Edit
什么是 JSON ?JSON 指的是 JavaScript 对象表示法(JavaScript Object Notation)JSON 可通过 JavaScript 进行解析JSON 数据可使用 AJAX 进行传输能够使用内建的 JavaScript eval() 方法进行解析实例:<div id="name"></div><div id="age"></div><script>var jsonobject={"name":"bill","age Read More
posted @ 2013-01-10 15:38 tinyphp Views(650) Comments(0) Diggs(0) Edit
什么是跨域?JavaScript出于安全方面的考虑,不允许跨域调用其他页面的对象。但在安全限制的同时也给注入iframe或是ajax应用上带来了不少麻烦。这里把涉及到跨域的一些问题简单地整理一下:首先什么是跨域,简单地理解就是因为JavaScript同源策略的限制,a.com 域名下的js无法操作b.com或是c.a.com域名下的对象。相关文章:JavaScript跨域总结与解决办法如何解决js跨域问题网页里做异步的跨域请求js跨域传输数据实例(单向)js跨域数据传输实例(双向) Read More
posted @ 2013-01-10 15:06 tinyphp Views(179) Comments(0) Diggs(0) Edit
在处理csv文件导入时关于fgetcsv获取中文乱码问题.. 因为项目采用utf-8编码, 而导入的csv文件是以ansi编码保存的 输出中文乱码问题.今天在处理csv文件导入的时候,通过fgetcsv方法返回的数组中,值为汉字的部分全是乱码。我分析是因为项目的文件全部以utf-8编码,而导入的csv文件是以ansi编码保存的,对于中文操作系统环境对应的应该就是gbk编码了,通过手动更改浏览器字符编码为gbk,乱码的情况消失了。于是决定对数组进行编码转换。下面就利用这一特性将数组转化为字符串然后再iconv接着再用eval函数将其还原为数组。结果正确显示。$data = eval('r Read More
posted @ 2013-01-09 11:22 tinyphp Views(1795) Comments(0) Diggs(0) Edit
很多网站都具备了利用书签按钮“一键提交”的功能,其实一点儿也不复杂,只要掌握了在收藏夹中使用js,就可以为书签工具增色不少。(不过ie浏览器不支持,一般用浏览器插件代替)下面例子的所有代码都需要填写在书签的地址栏(Location)中。例子1:先来一个最简单的例子,只包含一个js函数:javascript:alert(document.lastModified);点击这个书签项目,将会弹出一个提示框,显示当前网页的生成时间例子2:修改Html:<form method="post" name="Form1"><input type=&q Read More
posted @ 2013-01-04 11:34 tinyphp Views(1726) Comments(0) Diggs(0) Edit
预览效果:重点:把图片合成一张 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content=&q Read More
posted @ 2012-12-29 17:55 tinyphp Views(716) Comments(0) Diggs(0) Edit
<!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- Read More
posted @ 2012-12-27 22:13 tinyphp Views(575) Comments(0) Diggs(0) Edit