PDF(Portable Document Format)文件格式是Adobe公司开发的电子文件格式。这种文件格式与操作系统平台无关,这一特点使它成为在Internet上进行电子文档发行和数字化信息传播的理想文档格式。越来越多的电子图书、产品说明、公司文告、网络资料、电子邮件开始使用PDF格式文件。PDF格式文件目前已成为数字化信息事实上的一个工业标准。...
分类:
其他好文 时间:
2014-07-24 17:39:36
阅读次数:
209
附:一些Select的技巧1.动态创建selectfunction createSelect(){var mySelect = document.createElement("select");mySelect.id = "mySelect";document.body.appendChild(my...
分类:
Web程序 时间:
2014-07-24 17:17:55
阅读次数:
207
Python 手册Guido van RossumFred L. Drake, Jr., editorPythonLabsEmail: python-docs@python.orgRelease 2.3July 29, 2003About this document ...Python Tutori...
分类:
编程语言 时间:
2014-07-24 14:44:15
阅读次数:
273
<canvas>标签有属性width/height可以用来设置宽高,但是宽高默认为:300px*150px(width*height)javascript操纵:getContext("2d"):获取CanvasRenderingContext2D对象。校验兼容性:varcanvas=document.getElementById(‘tutorial‘);
if(canvas.getContext){
varctx=can..
分类:
Web程序 时间:
2014-07-24 10:53:19
阅读次数:
356
-----------------------------------------ListStu.csusingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
usingSystem.Collections;
namespaceConsoleApplication3
{
publicclassListStu<T>
{
privateQu..
分类:
其他好文 时间:
2014-07-24 10:51:54
阅读次数:
228
参考jQuery官网API文档$ 和 $() 的区别很重要:1、$(document).ready() 和 $(document).load() 的 区别: 前者等到DOM准备好了之后就会触发,后者必须等到整个网页(包括图片,iframe)准备好了才触发。 $(function(){ alert("...
分类:
Web程序 时间:
2014-07-23 22:27:37
阅读次数:
396
前言: 在javascript里面动态创建标准dom对象一般使用: var obj = document.createElement('div'); 然后再给obj设置一些属性。 但是,在实际使用过程中,有些人可能会想,要是能这样创建标准的dom对象就好了 伪代码:var obj=strToDom....
分类:
编程语言 时间:
2014-07-23 22:15:07
阅读次数:
270
一:需求:思路:document.form.action,表单分向提交,javascript提交表单同一个表单可以根据用户的选择,提交给不同的后台处理程序。即,表单的分向提交。如,在编写论坛程序时,如果我们希望实现用户在发送贴子的时候,既发送提交功能又有预览功能时,就会遇到上述问题。即,当用户点击提...
分类:
其他好文 时间:
2014-07-23 16:26:31
阅读次数:
169
知识靠积累,点滴收获。//设置控件被选中document.getElementById("id").checked=true;//设置控件不可用document.getElementById("id").disabled = true;//设置控件不可见document.getElementById...
分类:
Web程序 时间:
2014-07-23 16:25:31
阅读次数:
247
$(document).ready(function(){var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate",...
分类:
移动开发 时间:
2014-07-23 16:17:13
阅读次数:
191