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

资源搜

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

javascript网页开发 体验式教程 PDF_前端开发教程

资源名称:Javascript网页开发 体验式教程 PDF    《Javascript网页开发》结合大量应用实例,详细地讲解了HTML语言、CSS、Javascript语法、DOM对象模型编程、正则表达式,并介绍了网页脚本编程的其他相关技术和知识,例如,VBscript、NetScape控件、ActiveX控件、Java Applet小程序等。《Javascript网页开发》力求在不减少知识信息量的情况下,能够把书写薄,同时又能把问题说透,让读者能够迅速上手,并尽最大可能地扩展读者的知识面,启发读者自我思考和学习的能力,让读者感受到技术学习所带来的快乐。    资源截图:
陌佑
百度云
百度云

Professional javascript frameworks 英文pdf_前端开发教程

资源名称:Professional Javascript Frameworks 英文pdf   As the industry-standard, must-know scripting language, Javascript is supported by all major browsers and is increasingly the foundation of new web development technologies such as Ajax and JSON. This book offers a selection of some of the most active and most used Javascript frameworks available, replete with practical examples and explanations of what each framework does best. You’ll look at common web development tasks and discover how each framework approaches that set of tasks, as well as learn how to use the features of each framework and avoid potential pitfalls.    资源截图:
陌佑
百度云
百度云

21天学通javascript PDF_前端开发教程

资源名称:21天学通javascript PDF   第一篇 Javascript基础篇  第1章 Javascript概述(精彩视频:60分钟)    1.1 Javascript背景知识     1.1.1 Javascript的历史     1.1.2 制定标准     1.1.3 Javascript现况     1.1.4 Javascript的未来    1.2 简单的脚本语言    1.2.1 什么是脚本语言     1.2.2 脚本语言的分类     1.2.3 Javascript能做什么     1.2.4 Javascript和其他语言的异同     1.2.5 Javascript同Java的异同    1.3 第一个Javascript程序     1.3.1 预备知识     1.3.2 Javascript编辑器的选择     1.3.3 编写“Hello World”程序     1.3.4 浏览器对Javascript的支持    1.4 注意事项     1.4.1 大小写敏感     1.4.2 空格与换行     1.4.3 可有可无的分号    1.5 综合练习    1.6 小结    1.7 习题   第2章 数据类型(精彩视频:72分钟)    2.1 基本数据类型     2.1.1 使用字符串型数据     2.1.2 进一步理解字符串     2.1.3 使用数值型数据     2.1.4 使用布尔型数据    2.2 复合数据类型     2.2.1 常用的内置对象     2.2.2 日期对象     2.2.3 全局对象     2.2.4 数学对象     2.2.5 字符串对象     2.2.6 数组对象    2.3 其他数据类型     2.3.1 函数     2.3.2 空值     2.3.3 不确定的类型    2.4 数据类型的转换     2.4.1 隐式类型转换     2.4.2 显式类型转换    2.5 综合练习    2.6 小结    2.7 习题   第3章 变量和常量(精彩视频:47分钟)    3.1 常量     3.1.1 常量的种类     3.1.2 常量的使用方法    3.2 变量     3.2.1 什么是变量     3.2.2 变量的定义方式     3.2.3 变量的命名规则     3.2.4 变量的作用范围     3.2.5 变量的用途    3.3 Javascript关键字    3.4 综合练习    3.5 小结    3.6 习题   第4章 表达式与运算符(精彩视频:90分钟)    4.1 表达式    4.2 操作数   4.3 运算符介绍    4.3.1 运算符     4.3.2 操作数的类型    4.4 算术运算符     4.4.1 加法运算符     4.4.2 减法运算符     4.4.3 乘法运算符     4.4.4 除法运算符     4.4.5 取模运算符     4.4.6 负号运算符     4.4.7 正号运算符     4.4.8 递增运算符     4.4.9 递减运算符    4.5 关系运算符     4.5.1 相等运算符     4.5.2 等同运算符    4.5.3 不等运算符     4.5.4 不等同运算符     4.5.5 小于运算符     4.5.6 大于运算符     4.5.7 小于或等于运算符     4.5.8 大于或等于运算符     4.5.9 in运算符     4.5.10 instanceof运算符    4.6 字符串运算符    4.7 赋值运算符    4.8 逻辑运算符     4.8.1 逻辑与运算符     4.8.2 逻辑或运算符     4.8.3 逻辑非运算符    4.9 位运算符     4.9.1 位与运算符    4.9.2 位或运算符     4.9.3 位异或运算符     4.9.4 位非运算符     4.9.5 左移运算符     4.9.6 带符号右移运算符     4.9.7 高位补0右移运算符    4.10 其他运算符     4.10.1 条件运算符     4.10.2 new运算符     4.10.3 void运算符     4.10.4 类型检测运算符     4.10.5 对象属性存取运算符     4.10.6 数组存取运算符     4.10.7 delete运算符     4.10.8 逗号运算符     4.10.9 函数调用运算符    4.10.10 this运算符    4.11 运算符的优先级    4.12 综合练习    4.13 小结    4.14 习题   第5章 控制语句(精彩视频:70分钟)   第6章 函数(精彩视频:69分钟)   第7章 数组(精彩视频:65分钟)   ........   资源截图:  
陌佑
百度云
百度云

ja<x>vasc<x>ript 网页设计活学活用300例 chm_前端开发教程

资源名称:Javascript 网页设计活学活用300例 chm  Javascript精选网页特效300例,和以前有款教程相似,大致看了一下内容,和上次的不重复,既可以帮你快速查找想用的代码也可以作为参考资料学习之用,这些特效代码全部是用Javascript写出来的,内容涉及网页、鼠标、菜单、按钮、时间日期、文本、图形、导航、警示提示、状态栏及浏览器等,相当的丰富。 资源截图:
陌佑
百度云
百度云

javascript快速查询手册 PDF_前端开发教程

资源名称:Javascript快速查询手册 PDF   Javascript快速查询手册  目录  前言  第一部分 命令查询  第二部分 Javascript语句与运算符  第三部分 参考表  附录A 任务参考  附录B Internet资源  术语对照   资源截图:
陌佑
百度云
百度云

微软官方的Jscript参考手册 javascript语言中文参考手册打包合_前端开发教程

资源名称:微软官方的Jscript参考手册 javascript语言中文参考手册打包合集 chm     资源截图:
陌佑
百度云
百度云

JQuery 1.4.2 API 帮助文档简体中文chm_前端开发教程

资源名称:JQuery 1.4.2 API 帮助文档简体中文chm jQuery 1.4.2 API下载地址,jQuery 1.4.2帮助文档,jQuery 1.4.2 API中文版(绝对可以用) Vista,win7的安全机制问题。  资源截图:
陌佑
百度云
百度云

Dom文档对象模型手册 CHM_前端开发教程

资源名称:Dom文档对象模型手册 CHM Dom:英文全称-Document Object Model 译成中文即是:文档对像模型.听起来很术语,其实就是文档内容的结构关系.文档类型可以是HTML或XML Dom具有对Html文件和XML文件元素的访问控制能力,简单点说利用Dom可以对某个html或xml文件添加,修改,删除元素.更改其现有的结构或内容. 如果你未接触过Dom,你会发现Dom太神奇了...不管你是菜鸟还是高手,在这个注重用户体验的web时代里,Dom是至关重要的. 如果你是一名有经验的web开发者,你应该看到过或用过以下这些命令或方法 getElementById getElementsByTagName offsetParent appendChild getAttribute  不过至今仍有人认为这些都是Javascript中的东西,其实不然,这些全是Dom中很重要的方法! 本手册涉及dom内容很全很详细.仔细阅读吧年轻的程序员,相信他对你会有帮助!  资源截图:
陌佑
百度云
百度云

高性能javascript编程 英文PDF_前端开发教程

资源名称:高性能Javascript编程 英文PDF   Yahoo! frontend engineer Nicholas C. Zakas and five other Javascript experts -- Ross Harmes, Julien Lecomte, Steven Levithan, Stoyan Stefanov, and Matt Sweeney -- demonstrate optimal ways to load code onto a page, and offer programming tips to help your Javascript run as efficiently and quickly as possible. You'll learn the best practices to build and deploy your files to a production environment, and tools that can help you find problems once your site goes live.  Identify problem code and use faster alternatives to accomplish the same task  Improve scripts by learning how Javascript stores and accesses data  Implement Javascript code so that it doesn't slow down interaction with the DOM  Use optimization techniques to improve runtime performance  Learn ways to ensure the UI is responsive at all times  Achieve faster client-server communication  Use a build system to minify files, and HTTP compression to deliver them to the browser   资源截图:
陌佑
百度云
百度云

jQuery For Dummies pdf_前端开发教程

资源名称:jQuery For Dummies pdf Learn how jQuery can make your Web page or blog stand out from the crowd! jQuery is free, open source software that allows you to extend and customize Joomla!, Drupal, AJAX, and WordPress via plug-ins. Assuming no previous programming experience, Lynn Beighley takes you through the basics of jQuery from the very start. You’ll discover how the jQuery library separates itself from other Javascript libraries through its ease of use, compactness, and friendliness if you’re a beginner programmer. Written in the easy-to-understand style of the For Dummies brand, this book demonstrates how you can add unique and exciting interactivity to a Web site or WordPress blog, including photo browsers, menus, tab-based navigation, sliding sidepanels, slideshows, transition effects, fade effects, Twitter feeds, and much, much more! Walks you through the capabilities of jQuery, the number one open source Javascript library that enables you to provide interactivity on a Web site or blog Helps you understand DOM (Document Object Model) scripting, applying CSS classes via JQuery, and adding in special effects and jQuery plug-ins to your site Shows you how to create dazzling special effects on your site, including fades, slide shows, sliding panels, tabbed navigation, and more Explains how to add customized Twitter feeds, RSS feeds to aggregate content on your site, or add a photo browser to a site or blog Introduces ways to create jQuery plug-ins for WordPress, Drupal, and more If you have queries about how you can make your blog or Web site stand apart from the crowd, jQuery For Dummies is the book for you! From the Back Cover You don’t need to be a Web programmer to jazz up your Web site with jQuery! Want to keep your Web site cutting-edge but don’t want to invest a lot of time? No worries! This book will help you add simple but compelling jQuery effects and cool prebuilt plug-ins to your site — no geekiness required. You can quickly use widgets and AJAX plug-ins, and gain the essential jQuery know-how to achieve great effects fast. Starting point — find out what jQuery can do, use HTML elements, connect the jQuery library to a Web page, and understand the basics Make things happen — learn to make page elements appear and disappear, slide, fade, and move Plug it in — explore the array of available plug-ins, download and test them, and add widgets to your site Meet Ajax — see how Ajax works with jQuery and how you can give your Web site visitors a richer experience Manage your content — discover how to use jQuery with Drupal, Joomla!, and WordPress content management systems Open the book and find: How to acquire and test jQuery Tips on understanding parent-child elements Different types of event handlers Cool things to do with page elements Effects you can achieve with animation Ways to make forms easier and more appealing to use How to add a calendar to a page Ten terrific plug-ins you’ll want Learn to: Build site special effects such as fades, sliding panels, and tabbed navigation Create a photo gallery for your blog or Web site Customize Twitter® and RSS feeds Add jQuery plug-ins for WordPress®, Drupal®, Joomla!®, and more 资源截图:  
陌佑
百度云
百度云
⬅️ 1...18611862186318641865...2920

添加微信,反馈问题

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

搜索榜单

1

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

1647

2

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

1068

3

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

1032

4

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

908

5

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

873

6

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

804

最新资源

1

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

2

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

3

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

4

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

5

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

6

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

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

  • 点此立刻反馈