由买买提看人间百态

topics

全部话题 - 话题: javascript
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
r********r
发帖数: 208
1
http://www.infoworld.com/print/203737
Microsoft augments JavaScript for large-scale development
By IDG News Service staff
Created 2012-10-01 01:53PM
Equipping JavaScript to build more complex applications, Microsoft has
augmented JavaScript with a set of advanced development capabilities
typically found in more mature programming languages, such as C++ and Java.
These new capabilities, packaged as a JavaScript superset called TypeScript,
offers static typing, classes and modularization.
"Over th... 阅读全帖
c*****s
发帖数: 214
2
基本概念有问题
jsp是服务器上运行的程序,运行的结果是html文本流,从服务器流到你机器上的浏览器
。流内容是什么,html还是javascript还是图片,服务器统统没概念。
javascript是放在html里的脚本。浏览器接收到文本流后,浏览器认识html和javascript
。知道怎么画怎么运行javascript。到浏览器的输入只是文本流,对服务器上运行过什么
东西不知道。
回到你的问题。javascript当然不能告诉jsp什么东西。当javascript运行的时候,jsp早
就执行过了。浏览器通过form通知服务器, 你可以用javascript控制form内容然后递交。
前面的问题也一样。javascript当然不能直接访问JSP。服务端可能是JSP或任何语言,而
当javascript执行时那些程序早运行完了。它的输入完全来自浏览器上拿到的html文本。
mkac的方法是用javascript建立自己的数组,填充内容的程序部分是在服务端准备好的文
本,这样控制数组的值。但绝不是真的在javascript里访问到了服务端的java对象。
kx
发帖数: 16384
3
来自主题: Thoughts版 - javascript才是未来发展的方向
【 以下文字转载自 TopArticle 讨论区 】
发信人: wdong (cybra), 信区: Programming
标 题: javascript才是未来发展的方向
发信站: BBS 未名空间站 (Wed Nov 24 10:11:23 2010, 美东)
我老给你们正在纠结学哪种语言的人指条明路吧. 理由如下.
1. javascript, 或者说是ECMAScript, 是我见过设计最优雅的脚本语言. 因为历史原因
有一些恶心的东西, 但并不是语言本身的问题. 在我看来Javascript可以和编译型的pa
scal,以及functional的haskell媲美.
2. javascript基本上是平台无关的. 不需要什么开发环境, 只要有浏览器的地方就可以
编程序. 你能随身带着C++编译器或者python解释器到处跑吗?
3. 就业机会丰富. 当今这世道有那个网站不用javascript的? 虽然很多都是低层次的
客户端编程, 但是...
4. javascript的事件驱动机制为多核系统提供了另一种并行化的可能. 这一点是别的语
言不具备的. javascri... 阅读全帖
w***g
发帖数: 5958
4
来自主题: Linux版 - javascript才是未来发展的方向
【 以下文字转载自 Programming 讨论区 】
发信人: wdong (cybra), 信区: Programming
标 题: javascript才是未来发展的方向
发信站: BBS 未名空间站 (Wed Nov 24 10:11:23 2010, 美东)
我老给你们正在纠结学哪种语言的人指条明路吧. 理由如下.
1. javascript, 或者说是ECMAScript, 是我见过设计最优雅的脚本语言. 因为历史原因
有一些恶心的东西, 但并不是语言本身的问题. 在我看来Javascript可以和编译型的pa
scal,以及functional的haskell媲美.
2. javascript基本上是平台无关的. 不需要什么开发环境, 只要有浏览器的地方就可以
编程序. 你能随身带着C++编译器或者python解释器到处跑吗?
3. 就业机会丰富. 当今这世道有那个网站不用javascript的? 虽然很多都是低层次的
客户端编程, 但是...
4. javascript的事件驱动机制为多核系统提供了另一种并行化的可能. 这一点是别的语
言不具备的. javascr... 阅读全帖
G****e
发帖数: 1912
5
1. javascript, 或者说是ECMAScript, 是我见过设计最优雅的脚本语言. 因为历史原
因有一些恶心的东西, 但并不是语言本身的问题. 在我看来Javascript可以和编译型的
pascal,以及functional的haskell媲美.
2. javascript基本上是平台无关的. 不需要什么开发环境, 只要有浏览器的地方就可
以编程序. 你能随身带着C++编译器或者python解释器到处跑吗?
3. 就业机会丰富. 当今这世道有那个网站不用javascript的? 虽然很多都是低层次的
客户端编程, 但是...
4. javascript的事件驱动机制为多核系统提供了另一种并行化的可能. 这一点是别的
语言不具备的. javascript在server端和高性能计算的应用已经初见端倪. 关于事件和
线程这两种编程模式的讨论由来已久. 一般认为事件能提供更高的性能, 但是基于事件
的编程在传统的C/C++中相对困难, 以致线程一直占据了统治地位. Javascript的二次
兴起将在近几年打开一个全新的局面.
5. 解释器支持强劲. 目前各大浏览器都在拼命提升j... 阅读全帖
w***g
发帖数: 5958
6
来自主题: Programming版 - javascript才是未来发展的方向
我老给你们正在纠结学哪种语言的人指条明路吧. 理由如下.
1. javascript, 或者说是ECMAScript, 是我见过设计最优雅的脚本语言. 因为历史原因
有一些恶心的东西, 但并不是语言本身的问题. 在我看来Javascript可以和编译型的pa
scal,以及functional的haskell媲美.
2. javascript基本上是平台无关的. 不需要什么开发环境, 只要有浏览器的地方就可以
编程序. 你能随身带着C++编译器或者python解释器到处跑吗?
3. 就业机会丰富. 当今这世道有那个网站不用javascript的? 虽然很多都是低层次的
客户端编程, 但是...
4. javascript的事件驱动机制为多核系统提供了另一种并行化的可能. 这一点是别的语
言不具备的. javascript在server端和高性能计算的应用已经初见端倪. 关于事件和线
程这两种编程模式的讨论由来已久. 一般认为事件能提供更高的性能, 但是基于事件的
编程在传统的C/C++中相对困难, 以致线程一直占据了统治地位. Javascript的二次兴起
将在近几年打开一个全... 阅读全帖
w***g
发帖数: 5958
7
来自主题: Programming版 - javascript才是未来发展的方向
我老给你们正在纠结学哪种语言的人指条明路吧. 理由如下.
1. javascript, 或者说是ECMAScript, 是我见过设计最优雅的脚本语言. 因为历史原因
有一些恶心的东西, 但并不是语言本身的问题. 在我看来Javascript可以和编译型的pa
scal,以及functional的haskell媲美.
2. javascript基本上是平台无关的. 不需要什么开发环境, 只要有浏览器的地方就可以
编程序. 你能随身带着C++编译器或者python解释器到处跑吗?
3. 就业机会丰富. 当今这世道有那个网站不用javascript的? 虽然很多都是低层次的
客户端编程, 但是...
4. javascript的事件驱动机制为多核系统提供了另一种并行化的可能. 这一点是别的语
言不具备的. javascript在server端和高性能计算的应用已经初见端倪. 关于事件和线
程这两种编程模式的讨论由来已久. 一般认为事件能提供更高的性能, 但是基于事件的
编程在传统的C/C++中相对困难, 以致线程一直占据了统治地位. Javascript的二次兴起
将在近几年打开一个全... 阅读全帖
j********r
发帖数: 96
8
Greetings Mitbbs Community,
I have a contract-to-hire position available with an awesome company in
Seattle and I am looking for a Sr. Javascript Developer.
If you are interested, please contact: j**[email protected]
Senior JavaScript Developer – Optimization Services
We are seeking an experienced, detail-oriented web developer to implement
website optimization programs using our innovative technology platform. You
will report directly to the Director of Optimization Solutions and work
closely w... 阅读全帖
r*****3
发帖数: 143
9
来自主题: Programming版 - Secrets of the JavaScript Ninja
SUMMARY
Secrets of the Javascript Ninja takes you on a journey towards mastering
modern JavaScript development in three phases: design, construction, and
maintenance. Written for JavaScript developers with intermediate-level
skills, this book will give you the knowledge you need to create a cross-
browser JavaScript library from the ground up.
ABOUT THIS BOOK
You can't always attack software head-on. Sometimes you come at it sideways
or sneak up from behind. You need to master an arsenal of tool... 阅读全帖
b*****p
发帖数: 9649
10
google 了一下,不知道这个是否make sense?Thanks!
http://www.worthofweb.com/blog/is-jquery-better-than-dojo/
=======================================================
JQuery is a JavaScript library whereas Dojo is a JavaScript toolkit. Both
are Open Source softwares. JQuery provides the easy interaction between
HTML and JavaScript through JavaScript Library. It is used for handling
events, creating animations, reading and manipulating HTML document and
creating Ajax application with Ajax ASP.net and PHP. On t... 阅读全帖

发帖数: 1
11
Wall street tech Startup looking for candidates with 1-3 years of python/
javascript experience.
JOB TITLE: Core Python developer
LOCATION: New York, NY
DURATION: LONG TERM
JOB DESCRIPTION:
1. 3 years of Python (or similar) programming
2. Strong problem-solving and communication skills and enjoys a
collaborative environment
3. Flexible, self-starter, fast-learner – willing and able to quickly
learn new technologies and skills
4. Experience with functional programming is a... 阅读全帖
n*****4
发帖数: 20
12
来自主题: JobHunting版 - 内推Java和Javascript软件工程师职位
我的联系地址见内:
Job Description:
We are looking for JavaScript and Java developers. Ideal candidates should
have relevant front-end development experience and be proficiency in
JavaScript, Java, CSS, HTML, and web development frameworks. Knowledge
about JavaScript ES6 and React Native experience are preferable.
Requirements:
New Graduates or experienced engineers who have some experiences
on Java, Javascript or web application development; Proficiency in
Javascript, Java, HTML, and CSS for rapid proto... 阅读全帖
n*****4
发帖数: 20
13
来自主题: JobHunting版 - 内推Java和Javascript软件工程师职位
我的联系地址见内:
Job Description:
We are looking for JavaScript and Java developers. Ideal candidates should
have relevant front-end development experience and be proficiency in
JavaScript, Java, CSS, HTML, and web development frameworks. Knowledge
about JavaScript ES6, React Native, Nodejs or Spring framework are
preferable.
Requirements:
New Graduates or experienced engineers who have some experiences
on Java, Javascript or web application development; Proficiency in
Javascript, Java, HTML, and CSS f... 阅读全帖
s******a
发帖数: 12
14
JavaScript/ UI Engineer – FinTech Startup NYC
About Us: We are an early-stage financial technology startup in NYC. Using a
patent pending approach we are changing the way people manage their money
and make financial decisions. The founders have backgrounds that span large
scale system development, trading and portfolio management, quantitative
finance, and economics. We are extremely well-funded with very positive
initial customer feedback. We are currently in private beta but you can
learn more... 阅读全帖
n*****4
发帖数: 20
15
NewsOnChat提供intern or full time工作机会。 具体职位要求和公司介绍如下:
Job Description:
We are looking for JavaScript and Java developers. Ideal candidates should
have relevant front-end development experience and be proficiency in
JavaScript, Java, CSS, HTML, and web development frameworks. Knowledge
about JavaScript ES6 and React Native experience are preferable.
Requirements:
New Graduates or experienced engineers who have some experiences
on Java, Javascript or web application development; Proficiency in
Javas... 阅读全帖
i*****o
发帖数: 1714
16
来自主题: Programming版 - iphone/ipad javascript snippet editor
前不久看到有人用javascript写了个linux kernel,后来又看到javascript竟然排到四
大名言之首。回头赶紧写了个snippet editor,大家可以在闲来无事的时候玩玩
javascript。它类似safari的那个tool,不过是在iphone/ipad上的。有想要promo
code的同学站内信我。下面是介绍:
With SnippetEditor, you can edit html code and see the results right away.
It's designed to be an offline tool where no internet connection is required
. However you can also go online and see any sites's source code. While you
are at it, you can modify its source code and see the changes right away!
Included are quick referen... 阅读全帖
h****e
发帖数: 928
17
来自主题: JobHunting版 - javaScript 教程?
JavaScript的水其实很深。
Javascript the Good parts 和 Secrets of the Javascript Ninja都不错。
至少要学到能看懂下面的程序:
http://ejohn.org/apps/learn/#2
// The .bind method from Prototype.js
Function.prototype.bind = function(){
var fn = this, args = Array.prototype.slice.call(arguments), object = args
.shift();
return function(){
return fn.apply(object,
args.concat(Array.prototype.slice.call(arguments)));
};
};
实战就是用Javascript写一个LeetCode Online Judge For Javascript。

发帖数: 1
18
JOB TITLE: Javascript developer
LOCATION: New York, NY
DURATION: LONG TERM
Job Description
We are looking for a JavaScript Developer who is motivated to combine the
art of design with the art of programming.
Responsibilities will include implementing visual elements and their
behaviors with user interactions.
You will work with both front-end and back-end web developers to build all
client-side logic.
You will also be bridging the gap between the visual elements and the server
-side infrastructu... 阅读全帖
n*****4
发帖数: 20
19
来自主题: JobHunting版 - 招聘Java and Javascript 开发工程师
NewsOnChat提供两个intern or full time工作机会。 具体职位要求和公司介绍如下:
Job Description:
We are looking for Java and JavaScript developers. Ideal candidates should
have relevant backend or front-end development experience and be proficiency
in
Java, JavaScript, CSS, HTML, and web development frameworks. Knowledge about
JavaScript ES6 and React Native experience are preferable.
Requirements:
• New Graduates or experienced engineers who have some experiences on
Java, Javascript or web application development
... 阅读全帖
n*****4
发帖数: 20
20
来自主题: JobHunting版 - 招聘Java和Javascript开发工程师
NewsOnChat提供两个intern or full time工作机会。 具体职位要求和公司介绍如下:
Job Description:
We are looking for Java and JavaScript developers. Ideal candidates should
have relevant backend or front-end development experience and be proficiency
in
Java, JavaScript, CSS, HTML, and web development frameworks. Knowledge about
JavaScript ES6 and React Native experience are preferable.
Requirements:
• New Graduates or experienced engineers who have some experiences on
Java, Javascript or web application development
... 阅读全帖
a*o
发帖数: 19981
21
【 以下文字转载自 Hardware 讨论区 】
发信人: zdchen (quake), 信区: Hardware
标 题: 史上最强的JavaScript通讯实现
发信站: BBS 未名空间站 (Mon Apr 5 09:27:29 2010, 美东)
http://www.popyard.com/cgi-mod/newspage.cgi?num=500571&r=0&v=0
日本友人使用JavaScript和iPhone配合实现的使用声波通讯,传输字符串。脱离网络连
接的束缚......
2010 年04月04日消息,"史上最强JS通信方法!不受GET请求限制,无需3G无需 wifi无
需有线连接……用声波传输数据!跨域XHR和web sockets都去死罢!物理层才是王道!"
日本友人使用JavaScript和iPhone配合实现的使用声波通讯,传输字符串。 脱离网络
连接的束缚。直接上视频。
新闻延伸:JavaScript是什么?
JavaScript是一种广泛用於客户端Web 开发的脚本语言,常用来给HTML网页添加动态功
能,比如响应用户的各种操作。它最初由网景公司的
z****n
发帖数: 1933
22
来自主题: Hardware版 - 史上最强的JavaScript通讯实现
http://www.popyard.com/cgi-mod/newspage.cgi?num=500571&r=0&v=0
日本友人使用JavaScript和iPhone配合实现的使用声波通讯,传输字符串。脱离网络连
接的束缚......
2010 年04月04日消息,"史上最强JS通信方法!不受GET请求限制,无需3G无需 wifi无
需有线连接……用声波传输数据!跨域XHR和web sockets都去死罢!物理层才是王道!"
日本友人使用JavaScript和iPhone配合实现的使用声波通讯,传输字符串。 脱离网络
连接的束缚。直接上视频。
新闻延伸:JavaScript是什么?
JavaScript是一种广泛用於客户端Web 开发的脚本语言,常用来给HTML网页添加动态功
能,比如响应用户的各种操作。它最初由网景公司的Brendan Eich设计,是一种动态、
弱类型、基于原型的语言,内置支持类。以它为基础,制定了ECMAScript标准。
虽然更常用于网页,但 JavaScript也可以用于其他场合,比如服务器端编程。
f*******4
发帖数: 345
23
来自主题: Java版 - Random thoughts on Javascript
I added some AJAX features to our applications since last year.
The javascript library I tried include prototype, GWT, YUI and Dojo.
GWT, YUI and Dojo are more frameworks than library.
Personally, I like fancy AJAX applications such as Gmail, Google notebook,
Google map and so on. But javascript is really a big headache. It's so
flexible that it's very hard to understand the sophisticated javascript code
. Those javascript frameworks are efforts to ease the javascript pain for
most programmers.
o***g
发帖数: 2784
24
有java
有javascript
没有java script
javascript语法类似于java,这个就见仁见智了,如果说一些操作符是一样的也算的话。
javascript实现一些动态效果没错,但是它本身不提供网络连接的功能,所以和jsp提供
的动态效果是完全两码事。他只能针对客户端的DOM(Document Object Model)的操作。
jsp的动态效果完全是服务器端的。
我一直觉得jsp不能算是一种语言
javascript如果光说语法的话,和html的语法大体相当。
但是要用好javascript就比html麻烦多了。
d***i
发帖数: 19
25
来自主题: Java版 - Node.js, server-side javascript
I had been a java developer(mainly on web application) for 6-7 years
before I changed job and in current position spending 70% work time on
javascript vs 30% on java for 3 years.
It's still a challenge for me and a lot to learn/handle, in terms of
writing enterprise level's rich/dynamic UIs based on javascript.
Of course, we use framework on top of javascript, but underneath still
javascript programming. It's OO style javascript programming with framework
API supports.
s***o
发帖数: 2191
26
来自主题: Programming版 - javascript应该叫cscript才对.
太不会做生意了,怪不得倒了。换了现在的Oracle, 还不得上来又sue又charge的弄一
大笔名称
使用费。
from wiki:
////////
//
JavaScript was originally developed by Brendan Eich of Netscape under
the name Mocha, which was later renamed to LiveScript, and finally to
JavaScript.[11][12] LiveScript was the official name for the language
when it first shipped in beta releases of Netscape Navigator 2.0 in
September 1995, but it was renamed JavaScript in a joint announcement
with Sun Microsystems on December 4, 1995 [13] when it was deployed in
t... 阅读全帖
b**********1
发帖数: 215
27
来自主题: JobHunting版 - 请教一道JavaScript 编程题
题目是 convert a provided search page and its results into an "API". The
final result will be a Javascript function that takes a search query and
return as JSON. To Create this all of your Javascript code will be injected
into the page before it can be used.
Search page source:
http://toronto.craigslist.ca/search/ggg
function will stimualte the search query
Result source:
http://toronto.craigslist.ca/search/ggg?query=tickets&is_paid=a
Desired Javascript Method results example
Function craigsilists... 阅读全帖
n*****4
发帖数: 20
28
Job Description
We are looking for a JavaScript Developer who is motivated to combine the
art of design with the art of programming. Responsibilities will include
implementing visual elements and their behaviors with user interactions. You
will work with both front-end and back-end web developers to build all
client-side logic. You will also be bridging the gap between the visual
elements and the server-side infrastructure, taking an active role on both
sides, and defining how the application lo... 阅读全帖
l********g
发帖数: 68
29
来自主题: SanFrancisco版 - Full Stack Javascript Developer (转载)
【 以下文字转载自 JobMarket 讨论区 】
发信人: lordofring (闲云野鹤), 信区: JobMarket
标 题: Full Stack Javascript Developer
发信站: BBS 未名空间站 (Mon Nov 23 00:10:17 2015, 美东)
a bay area data storage company is seeking a Full Stack Javascript Developer
for design and implement our core management platform.
Qualifications:
3+ years of development experience in Javascript, HTML 5 and Python
Experience with Nodejs, Angular framework preferred
Solid understanding of Object-Oriented Programming and CS foundations
... 阅读全帖
h***o
发帖数: 1494
30
来自主题: Seattle版 - 以后Office上开发也要JavaScript了
微软官方消息已表明,HTML5和JavaScript是Windows 8的重点研发技术。如今,微软表
示,HTML5/JS也将成为Office15的重点开发技术平台。
Office编程是指利用自定义代码和第三方附件应用拓展微软Office平台的能力。过去,
微软引导开发者使用VBA(Visual Basic for Applications)和VSTO(Visual Studio
Tools for Office )作为主要开发工具。
有报道透露,Office 15将在2012年底或2013年发布。而微软目前正规化新的开发工具
,将整合HTML5和JavaScript作为下一代办公套件Office 15和Office 365的开发技术之
一。
一则微软软件工程师招聘信息上写着:
“现在是Office编程进军下一阶段的时候,我们这个虽小但强大的团队,目前使用
Visual Studio作为Office15的开发工具。我们的主要目标之一是,让开发者像开发
Windows8一样简单而轻松地研发Office15。集成HTML5和JavaScript开发技术,能够让
开发者研发出更丰富的应用程序... 阅读全帖
N********n
发帖数: 8363
31
来自主题: Seattle版 - google's memo about javascript (转载)
"Javascript has fundamental flaws that cannot be fixed merely by evolving
the language." / Google
Hate to do this but I warned people of how trashy Javascript is, did I
not? With Google quietly abandoning the ship, Sinofsky and WinDiv have
now become the last fool left on the Javascript bandwagon with this
clueless attempt to make JS "the first-class citizen" in Win 8.
Now Google is looking for a SilverLight counter-part to replace JS and
yet MSFT is killing it to embrace Javascript. Can you sa... 阅读全帖
j********r
发帖数: 96
32
来自主题: WaterWorld版 - AVALARA - Javascript Engineer
Greetings Mitbbs Community,
I currently have an opening for a full time Javascript Engineer. If you are
interested please contact: J*********[email protected]
Job Description:
All of Avalara’s businesses come together in the Administration Console.
Your job is help Avalara’s slogan of “Making sales tax less taxing” come
true for our thousands of customers by building well structured rich-client
applications. So don’t settle for being a tiny cog in a big machine or
waiting for customers to arrive – ... 阅读全帖
x********g
发帖数: 595
33
来自主题: BuildingWeb版 - 一个简单的Javascript菜单制作的问题
我用javascript写了一个点击就展开的菜单;现在问题是,如果有好多个这样的菜单,
那就得针对每一个菜单栏目写一段这样的javascript,能不能用一段javascript控制所
有菜单项目?
我试了一下,没成功~
如图,如果只有“苹果”一个栏目,没有任何问题:
可是再加上一个“蔬菜”栏目之后,就变得有些乱了。 。。。。。
代码如下:



[b]





NameAddress
PeterS... 阅读全帖
d**o
发帖数: 864
40
单从语言的角度来说,比python难一点点而已。写起来却烦死你。
从应用角度来说,虽然node.js现在做server side的script开始流行(rnr, php,
django的功能),但js不可替代的作用是作browser side的UI交互,也就是说,除非你
想做UI,学javascript没有太大意义(个人意见)。
做UI,又必须得用jquery之类的framework,否则写起code起来很烦,但是这种
framework又得跟原生的javascript混着用,所以javascript的code经常看起来非常的
messy。你又得用各种各样的library,各种library的语法经常又不一致。
没有难不难的问题,就是烦,因为你要做web UI,你就得跟HTML,CSS交互,这些东西
的结构又都不一回事,web的debug和test又没有很有系统性(得不断刷新页面来test 实
现的功能).交互都是以事件触发的,比如说某一个button被click了,你得做一系列的
反应,html的content怎么变,css怎么变,数据怎么样从server load。
很经常你得用R... 阅读全帖
r*******n
发帖数: 3020
41
来自主题: Programming版 - 基本得出结论:Javascript ruined by Java
你的主题是Javascript ruined by Java。
Java是OO的代表,如果我理解对的话你是认为javascript不应该支持OO,
不应该有class; 我是认为javascript 主要作为web ui的前端语言,
而UI更适合用OO模型,所以我觉得javascript应该更好的支持OO;
如果加入class取代prototype我觉得是好事。
c*********e
发帖数: 16335
42
来自主题: Programming版 - 看来2013还是Javascript最流行
其实,javascript需要一个ide,就象好多javascript编程人员在jsfiddle.net里面调试
javascript一样。
javascript需要的就是一个象jsfiddle.com这样的ide,最好是整合在eclipse/visual
studio里面,这样就完满了。
c****o
发帖数: 515
43
本人正在转行IT的过程中。面临向coding的那个方向发展的选择。
最近发现web开发很火, node.js, ROR之类的在版上被讨论得很多。但是和一些IT界的
朋友讨论,发现一些朋友认为JavaScript是皮毛,主要是用来做网页界面的,只不过是
实现designer的design而已。他们说JavaScript不用来做基础的东西,比如算法,所以
技术含量不够高,以后写在resume上也不漂亮,career prospect不如更基本的语言好。
他们建议我去学Java,去做一些跟back end,infrastructure相关的项目,或者去做
mobile开发等,以后可能发展比JavaScript更大一些。
不知道版上达人对这种观点怎么看?JavaScript真的只是用来做界面,没有技术含量的
吗?
谢谢。
T*******x
发帖数: 8565
44
我遇到过这个问题。
这样做会遇到ajax cross-domain 的问题。
所以普通的ajax不能用,这就有很大的限制。
没有ajax,你数据怎么来啊?
ajax cross-domain problem是这样的:
这个是browser所加的限制。
一般javascript以及html文件都是在server上的。
用户访问的时候从server下载到用户browser上运行。
要数据的时候javascript发出ajax到服务器上取数据。
cross-domain policy要求这个ajax只能发给javascript
所从来的那个server。发给别的server甚至同一个server
不同的port都不行。如果没有server,让javascript和
html直接在本地browser里运行的话,那么所有的server
都算cross-domain server,都有这个限制。
这个有几个解决办法,都要在取数据的server端有个
特殊的设置,如果你控制不了server端的设置,比如第三方
的服务,那就不行。所以还是限制很大。
我当时是做一个小的demo,在IE browser上... 阅读全帖
b******s
发帖数: 25
45
Front-end javascript engineer 6-month contract to hire position: $50.00
hourly, in Plano TX, require Green card/US citizen.
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
==========================================================>
Main Duties: Development of distributed applications used for analytical
purpose ... 阅读全帖
b******s
发帖数: 25
46
Front-end javascript engineer 6-month contract to hire position: $50.00
hourly, in Plano TX, require Green card/US citizen.
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
==========================================================>
Main Duties: Development of distributed applications used for analytical
purpose ... 阅读全帖
K*********8
发帖数: 62
47
来自主题: JobHunting版 - 内推 Comcast Javascript Developer
Comcast is hiring a Javascript developer now. You will work at their
Innovation
Center located at Sunnyvale,CA.
Job requirements:
1. At least 2 years of web development experiences;
2. 4+ years Javascript development experience, hands on work experience on
Javascript frame work such ash Backbone.js, Angular.js, etc..,
3. Great knowledge at Restful APIs etc.,
4. Master degree in CS, EE, ISE, or other related major.
The salary is very competitive and the work environment is great. You will
work ... 阅读全帖
J*****6
发帖数: 107
48
这个公司是个在纽约10年左右的一个科技公司,公司待遇也不错,之前有几个国人都接
了offer 去了,offer 价格都在13万左右,然后由于公司是在纽约,会比较喜欢local
候选人, 但是你如果在其他地方的话也可以来试试看吧,只是公司不包机票啥的,公
司感觉规模不是很大,但是很稳定。要求3年经验的样子,工作内容会接触很多大数据
等等,工作内容都不错,如果你还没准备好flag的话,个人觉得这个公司还是可以试看
看的。
我是纽约的猎头哈,大家如果对职位有兴趣,可以直接发邮件给我咨询哦(jobs7069@
gmail.com),或者还有其他职位会适合你们,现在纽约这边面的挺热闹的都是些中型科
技公司,人的流动性大。 当然我们这边还有些hedge fund 的职位,只是略难进,我不
是说由于技术要求个高而难进,而是对candidates的personality, skills, review,
交流能力 还有 VISA都很看重....总之要求是严格的,但是进去后工资也是不错的啦~
btw, 如果你是PhD in Computer Science 小猎这边应该还有其他些职位供大家试试的
,然后... 阅读全帖
s******a
发帖数: 12
49
来自主题: JobMarket版 - Lead JavaScript Engineer
About Us: We are an early-stage financial technology startup which is
changing the way people manage their money. The founders have a background
that spans large scale system development, trading and portfolio management,
quantitative finance, and economics. It's this unique mix of skills and
reach in these industries that gives us a different perspective on how to
build a platform that helps people understand and make life decisions about
their finances. We are extremely well-funded with very p... 阅读全帖
l********g
发帖数: 68
50
来自主题: JobMarket版 - Full Stack Javascript Developer
a bay area data storage company is seeking a Full Stack Javascript Developer
for design and implement our core management platform.
Qualifications:
3+ years of development experience in Javascript, HTML 5 and Python
Experience with Nodejs, Angular framework preferred
Solid understanding of Object-Oriented Programming and CS foundations
Successful delivery of building scalable, optimal performance web
applications
Database experience in Mongo DB or NoSQL
Good understanding... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)