资源搜
资源搜
👀 联系夏柔
🔥 投稿源码
资源搜

资源搜

  • 全部
  • 123盘
  • 阿里盘
  • 百度云
  • 迅雷
  • 夸克
  • 115
  • 蓝奏云
  • 其他
已收录34127条资源,仅供学习交流,请在24h内删除资源!

javascript Examples Bible PDF_前端开发教程

资源名称:Javascript Examples Bible PDF   A common thread running throughout most of my computer-book–writing  career is that I tend to write a book I wish I had had in order to learn a new  technology in the first place. Because I must write that book without the benefit of  existing models, I begin by doing my best to master the technology, and then I write  the book to help other newcomers learn as much as I did, but more quickly and  with less pain, anguish, and confusion. To accomplish that goal, I write as much  content as I feel is necessary to cover the topic in the depth that my readers  require.  When I started on what became the 4th and Gold editions of the Javascript Bible,  there were models to follow (my previous three editions) plus a substantial amount  of brand new material, much of which had not yet been documented anywhere. I  also assumed the responsibility of integrating the frequently conflicting and competing  philosophies of the ways the Javascript language is applied to a variety of  browser brands and versions. Resolving these conflicts is a challenge that I face in  my own programming work with clients, and I take great pleasure in sharing my  solutions and approaches with other programmers floating in the same boat.  As my editor and I began counting the pages I had assembled for these new editions,  we discovered that the number of pages far outstripped the printer’s binding  capabilities, even in a thicker volume made possible by using a hard cover (the  Gold edition). Certainly not all of the words that I had written were so precious that  some of them couldn’t be cut. But we were hundreds of pages beyond capacity. To  cut that much content would have forced exclusion of coverage of language or document  object model vocabulary.  Fortunately, as had been done in previous editions, the plan for the new editions  included Adobe Acrobat versions of the books on the accompanying CD-ROM.  Although a significant compromise to ease of reading, it was possible to move some  of the book’s content to the CD-ROM and leave the most important parts on the  printed page. For the softcover 4th edition, reference chapters covering less-used or  advanced subjects were pulled from print; for the hardcover Gold edition, which  was longer and targeted more for professional scripters, the advanced chapters  were put back into the book (along with 15 additional chapters for that edition),  and the Javascript tutorial was exiled to the CD-ROM.   资源截图:
陌佑
百度云
百度云

完美网页设计CSS快速参考 中文chm_前端开发教程

资源名称:完美网页设计CSS快速参考 中文chm Dreamweaver 8完美网页设计之CSS快速参考,是一本比较全面的CSS技术手册,很实用的必备工具手册。 资源截图:
陌佑
百度云
百度云

Pro PHP and jQuery 英文pdf_前端开发教程

资源名称:Pro PHP and jQuery 英文pdf This book is for intermediate programmers interested in building AJAX web applications using jQuery and PHP. Along with teaching some advanced PHP techniques, it will teach you how to take your dynamic applications to the next level by adding a Javascript layer with jQuery. Learn to utilize built-in PHP functions to build calendar tools. Learn how jQuery can be used for AJAX, animation, client-side validation, and more. What you’ll learn Use PHP to build a calendar application that allows users to post, view, edit, and delete events. Use jQuery to allow the calendar app to be viewed and edited without requiring page refreshes using built-in AJAX functions. Learn the power and versatility of PHP’s object-oriented programming style. Learn the various forms of security available and how to best apply them. Learn jQuery plug-in development patterns and create modular, reusable jQuery plug-ins. Learn the basics of jQuery effects, including fading elements, generating HTML markup on the fly, and creating modal windows. Who this book is for This book is intended for programmers who want to bridge the gap between front- and back-end programming. It does not cover HTML or CSS except where absolutely necessary, and it focuses on taking intermediate PHP developers to the next level while getting comfortable with AJAX and the power of jQuery. Author Information Jason Lengstorf Jason Lengstorf is a software designer and developer based in Missoula, MT. As the owner of Ennui Design, he specializes in creating custom web applications, ranging from simple informational web sites to full-fledged content management systems. When not glued to his keyboard, he’s likely standing in line for coffee, shopping for cowboy shirts, or pretending to know something about wine. 资源截图:
陌佑
百度云
百度云

英文原版OReilly javascript CHM_前端开发教程

资源名称:英文原版OReilly Javascript CHM     资源截图:
陌佑
百度云
百度云

javascript基本知识点笔记_前端开发教程

资源名称:Javascript基本知识点笔记   数组对象  建立数组对象:  格式1:数组对象名称=new Array([元素个数])  格式2:数组对象名称=new Array([[元素1][,元素2,...]])  格式3:数组对象名称=[元素1[,元素2,...]]  数组对象的属性:  格式:数组对象名称.属性  属性:length  数组长度  数组对象的方法:  格式:数组对象名称.方法([参数])  方法:  join([分隔符]) 数组元素组合为字符串  toString() 以字符串表示数组  reverse() 数组反转  valueOf() 返回数组值  字符串对象  建立字符串对象:  格式:字符串对象名称=new String(字符串常量)  格式:字符串变量名称="字符串常量"  字符串对象的属性:  格式:字符串对象名称 . 属性属性:  length   字符串长度  字符串对象的方法:  格式:字符串对象名称.方法  方法:  bold() 粗体  italtics() 斜体  strike() 删除线  fontsize(字级大小) 文字大小  fontcolor(#rrggbb) 文字颜色  sup() 上标  sub() 下标  toUpperCase() 大写  toLowerCase() 小写  charAt(索引) 返回索引位置的字符  charCodeAt(索引) 返回索引位置的ASCII字符码,十进制表示  indexOf("字串"[,索引]) 返回字串在对象中的索引位置  lastIndexOf("字串"[,索引]) 返回字串在对象中的索引位置(反向搜索)  search("字串") 返回字串在对象中的索引位置  replace("字串1","字串2") 字串2替换字串1  slice(索引i[,索引j]) 返回索引i倒索引j-1的子串  split(["字串"][,限制]) 将字串从对象中删除  substr(start[,length]) 返回特定长度的字串  substring(索引i[,索引j]) 返回索引i倒索引j-1的子串  link("url") 设置链接  match(/匹配字符/) \\\\d 匹配一个数字字符。  \\\\D 匹配一个非数字字符。  \\\\n 匹配一个换行符。  \\\\r 匹配一个回车符。  \\\\s 匹配一个空格符。  \\\\S 匹配任意非空格符。  \\\\t 匹配一个table符。  \\\\W 匹配任何非单词符。  \\\\num 匹配正整数num。  /n/ 匹配八进制,十六进制,十进制的escape值。  toString() 返回字符串  valueOf() 返回字符串值   资源截图:
陌佑
百度云
百度云

javascript 深入编程网页收集(超级经典)_前端开发教程

资源名称:Javascript 深入编程网页收集(超级经典)   Javascript 深入编程网页收集(超级经典),都是收集的一些不错的页面跟chm文件   资源截图:  
陌佑
百度云
百度云

w3school Web标准全套教程 中文chm_前端开发教程

资源名称:w3school Web标准全套教程 中文chm  w3school Web标准全套教程 chm,从最基础的HTML语言开始,依次介绍XML、浏览器脚本语言(Javascript/VBscript/Ajax/dHTML/等)、服务器脚本(ASP、PHP、ASP.NET等)、多媒体、建站手册(一些建站常识及CSS网站重构相关知识),全教程CHM格式 资源截图:
陌佑
百度云
百度云

ja<x>vasc<x>ript模式 英文PDF_前端开发教程

资源名称:Javascript模式 英文PDF Written by Javascript expert Stoyan Stefanov -- Senior Yahoo! Technical and architect of YSlow 2.0, the web page performance optimization tool -- Javascript Patterns includes practical advice for implementing each pattern discussed, along with several hands-on examples. You'll also learn about anti-patterns: common programming approaches that cause more problems than they solve. Explore useful habits for writing high-quality Javascript code, such as avoiding globals, using single var declarations, and more Learn why literal notation patterns are simpler alternatives to constructor functions Discover different ways to define a function in Javascript Create objects that go beyond the basic patterns of using object literals and constructor functions Learn the options available for code reuse and inheritance in Javascript Study sample Javascript approaches to common design patterns such as Singleton, Factory, Decorator, and more Examine patterns that apply specifically to the client-side browser environment 资源截图:
陌佑
百度云
百度云

ExtJS 实用简明教程 CHM_前端开发教程

资源名称:ExtJS 实用简明教程 CHM ExtJS是一个用javascript写的,主要用于创建前端用户界面,是一个与后台技术无关的前端ajax框架。因此,可以把ExtJS用在.Net、Java、Php等各种开发语言开发的应用中。   ExtJs最开始基于YUI技术,由开发人员Jack Slocum开发,通过参考Java Swing等机制来组织可视化组件,无论从UI界面上CSS样式的应用,到数据解析上的异常处理,都可算是一款不可多得的Javascript客户端技术的精品。 资源截图:
陌佑
百度云
百度云

javascript 电子书 包含了 函数 object Prototype 继承_前端开发教程

资源名称:Javascript 电子书 包含了 函数 Object Prototype 继承   包含了 函数 Object Prototype 继承 浏览器环境。书中的内容也是作者发布的一些文字打包整理的希望对学习javascript的有所帮助   资源截图:
陌佑
百度云
百度云
⬅️ 1...20932094209520962097...3148

添加微信,反馈问题

微信及时反馈问题,方便沟通,请备注 ❤️

搜索榜单

1

骚老板资源网整站源码 打包数据高达2GB

1665

2

绿色风格网络公司源码 php网络建站公司源码

1082

3

(自适应手机版)响应式餐饮美食企业网站源码 餐饮品牌连锁机构织梦模板

1039

4

雷速问卷调查系统(疫情上报系统) v7.08

924

5

Zblog仿918回忆模特写真网带整站数据图库系统源码

883

6

一款笑话类网站源码 简约清爽的织梦笑话网站模板

811

最新资源

1

网狐电玩系列/乐游电玩城/免微信免短信登陆

2

湖南地方玩法好玩互娱纯源码

3

最新更新网狐旗舰大联盟+UI工程

4

傲玩系列客户端通用加解密工具

5

优米H5电玩城组件/多语言/带84个游戏/后台带控+搭建视频教程

6

网狐系列猫娱乐新UI蜡笔小新金币组件

友情链接:
免费APISSL在线检测在线pingAPI版本项目seo教程免费下载狗凯源码网 查看更多
网站地图 法律声明
本站所存储的源码数据均为转载,不提供在线播放和下载服务。本站为非盈利性,不收取费用,所有内容不用于商业行为,仅供学习交流使用。如有侵权,请联系15001904@qq.com
  • 联系微信,反馈问题

  • 点此立刻反馈