H*******g 发帖数: 6997 | 1 我说的仔细点好了。
譬如你有一个网页,有HEADER, FOOTER,还有中间的内容部分。
不用AJAX的话,那么每次的POST BACK,都会同时更新HEADER, FOOTER和CONTENT。
用了AJAX,你可以指定网页只更新CONTENT部分。
这样一来,就可以减少数据的传输量,节约带宽什么的。最关键的是,可以让用户用着
觉得爽多了,因为传统的POST BACK,每次都会让你的屏幕闪一下。用了AJAX,你就看
不到这个了。 |
|
g****z 发帖数: 1135 | 2 如果form是ajax submission:
Assume jquery ajax:
1. Return json array/object from server to the browser in the format of [
imgtagid, src, uri]
2. In ajax "success" function, do $('#'+imgtagid).attr(src, uri)
如果form是post submission,那太容易了,直接把这个uri写入template生成的html中。 |
|
r****y 发帖数: 26819 | 3 老实说,ajax跟前面两个都不在一个意义上。换句话说,ajax不是私有技术,哪里都用。
.net自己不就用ajax嘛,已经集成了。
只有silverlight跟flash两个打架。因为这俩都是需要装跟平台有关的插件的。 |
|
s***o 发帖数: 2191 | 4 Just some brainstorming idea, I am not sure if there are already built-in or
short-cut ways of doing this:
Since a single textbox is used for all the names, it seems customizing the
validation engine is not a good way.
you could send the names to the server through jQuery ajax call, then parse
it and compare it with the address book, then return a List of the names
with extra information such as "IsCorrect" to the client.
Based on the "IsCorrect", you can apply different css styles to the names,... 阅读全帖 |
|
vn 发帖数: 6191 | 5 每个method都做是相当的麻烦
比如client端有一个ajax call可以删某数据
在不需要的地方我就不显示link就行了
但是发现用户聪明的话 自己在前端可以f12 debug, 掉用ajax call啊
这种都得check吗?太痛苦了 那么多类似的ajax调用 |
|
c*********e 发帖数: 16335 | 6 c#里面,可以把一个c#写的method加注是ajax方法。
但是,client side 的ajax写法一般是这样的:
$.ajax({
url: "test.html",
context: document.body
}).done(function() {
$( this ).addClass( "done" );
}); |
|
c*********e 发帖数: 16335 | 7 我是说c#写的code,可以加注是ajax.其实是用c#写的。
但是,现在流行的client side 的ajax写法一般是这样的:
$.ajax({
url: "test.html",
context: document.body
}).done(function() {
$( this ).addClass( "done" );
}); |
|
w******n 发帖数: 692 | 8 You should compare JSF with AJAX framework(not those AJAX Framework based on
JSF). I like pure javascript AJAX solution. Maybe someone would suggest
stay away with javascript. That is up to you. Probably you could check the
link http://www.theserverside.com/news/thread.tss?thread_id=36601 and get some idea on it. |
|
F****n 发帖数: 3271 | 9 我觉的AJAX不是ESSENTIAL的,新WEB FRAMEWORK应该是把CLIENT SIDE的东西象HTML,
JS等从应用LOGIC中分离出去,WEB FRAMEWORK和HTML,JS CODE之间就好比C和汇编语言
的关系一样。AJAX只是一个实现技术,最好是TRANSPARENT TO USER AND DEVELOPERS。
换句话说,AJAX应该是可以被其他更好的技术,如GRID COMPUTING所替换的
framework |
|
t*******e 发帖数: 684 | 10 由于government contract有accessibility要求,website的ajax功能必须能fallback
到standard form submission,如果javascript被disable了. Spring web flow的dojo
widgets是有ajax fallback能力, 但是widgets不全. 自带的Theme只能用到widgets上
,目前没有designer帮忙处理standard HTML tag的look and feel.
请教大家有没有用过什么framework, UI components有built-in themes, ajax
fallback, 又能完全替代所有standard HTML tags. |
|
t*******e 发帖数: 684 | 11 只能是个conventional HTML-centric的framework.
支持ajax fallback的就看到了Spring Web Flow和Wicket.
很多复杂的Ajax功能(如Reverse Ajax)只能靠javascript实现,
这些功能不可能fallback成plain HTML. |
|
e*****t 发帖数: 1005 | 12 几件事情无法苟同:
1. ejb和webservice是apple to orange,用起来有相关或者重叠的地方,但是出发点
不同。webservice是为了不同系统间的integrate,不仅仅是java,可以方便的让任何
client去调用service,包括web client
2. ajax不是用来统一ff,ie的。许多ajax framework例如(YUI,dojo,jquery)是有这个
目标的,当然,还是有些问题的。ajax这个概念本身强调的是async,不需要去reload一
整个页面
3. 不是说在xml之上催生了web service。 xml是w3c玩出来的,是为了更方便的交流
structured data。应该是反过来,web的发展催生了xml。没有xml之前,也是有各自
proprietary的web service的。
4. SOAP和REST并不仅仅是精简掉soap 的那些xml.rest的核型思想是resource
oriented.不过现在大多数都是Restful,不是pure REST,其实也就跟你说的差不多了。
5.Jboss eap sur... 阅读全帖 |
|
e*****t 发帖数: 1005 | 13 几件事情无法苟同:
1. ejb和webservice是apple to orange,用起来有相关或者重叠的地方,但是出发点
不同。webservice是为了不同系统间的integrate,不仅仅是java,可以方便的让任何
client去调用service,包括web client
2. ajax不是用来统一ff,ie的。许多ajax framework例如(YUI,dojo,jquery)是有这个
目标的,当然,还是有些问题的。ajax这个概念本身强调的是async,不需要去reload一
整个页面
3. 不是说在xml之上催生了web service。 xml是w3c玩出来的,是为了更方便的交流
structured data。应该是反过来,web的发展催生了xml。没有xml之前,也是有各自
proprietary的web service的。
4. SOAP和REST并不仅仅是精简掉soap 的那些xml.rest的核型思想是resource
oriented.不过现在大多数都是Restful,不是pure REST,其实也就跟你说的差不多了。
5.Jboss eap sur... 阅读全帖 |
|
c*********e 发帖数: 16335 | 14 lz自己一个人琢磨的几年自学经验,连svn,git这样的小group开发软件经验都没有,对
整个系統的架构,用几个interface,几个class之类的都没有个经验,光懂几个概念是
不行的。什么是solid?什么是aggregation?
lz还是写自己是entry level,找junior position吧。否则上了面试桌,要把面试官给
笑死。
lz用javascript,jquery,ajax,json这些吗?j2ee都有上10年了,市场上很多老手。但
是,很多老手对这些新的javascript,jquery,ajax,json没啥经验。如果你有jquery,
ajax,json这方面的经验,建议你申请这方面的先。 |
|
j******n 发帖数: 871 | 15 昨晚打牌跟你聊了之后问了下,原来不是那么简单,
要分deep web 和js rich 两种,
如果单纯form based的deep web好办点。
刚才看了你的那个site,应该是js rich的。
你楼上找出html部分没用,你要触发event,如果ajax 你要看ajax code部分去哪里。
之后应该就简单了,因为就是预先计算可能的值填到参数部分,如果是年份,也不过一
百多个值。
你先看看这个吧。有点概念。
https://dl.dropboxusercontent.com/u/1788176/deepweb_part_201113.pdf
后边帮不到你了,找ajax的其实也不难,你那个页面,一万多行,你自己慢慢找吧,我
看着头痛,没那动力和功夫。
祝你好运。 |
|
g*****g 发帖数: 34805 | 16 You worry too much. Scalability is not an issue until
it's an issue. And for average website, it may never
be an issue.
ZK is one of so called stateful component frameworks, components
are rendered on server side. But traditional request-based
frameworks are done this way too. The main advantage of ajax,
is updating only a portion of webpage so that the update can
be fast. Reducing IO isn't as important. That being said, as
long as it's ajax framework, you can still expect less traffic
than requ... 阅读全帖 |
|
z***e 发帖数: 5393 | 17 对啊,但是目前的ajax应用也一般只是针对页面一小部分,而不是全部,很多还是在
server生成页面的。
比如说,facebook聊天是ajax,但是newsfeed应该就是静态生成的---你打开facebook
,点坐上角facebook图标,会看到除了最左边一栏,整个右边大半页面都有个刷新过程,这应
该就是在backend生成的右边页面,然后返回(大概是个iframe).
按照我的想法和ajax的习惯,你不应该看到这个页面刷新过程(直接替换DOM里面的
innerHTML不应该看到刷新的过程). |
|
k***r 发帖数: 103 | 18 需要额外点击接受的话,你那个server 应该是用的self-signed certificate吧,我估
计是要看浏览器内部怎么处理这种情况下的cors-ajax调用了, 从你的JS code里应该
是没法完全搞定。。。 最简单就是把ajax call的request/response headers都在
browser developer tool里调出来看看,应该能看出它为啥中断了你的ajax call...
certificate |
|
z****e 发帖数: 54598 | 19 当年ie在html上都有自己的私货
连最基本的markup language都无法统一
这里面折腾就多了,m$的算盘是等ie一统全球之后
然后标准就都ie定,就像当年的windows一样
可惜,开源的同学们坚决扶植起来了firefox
让m$的算盘落空,当年firefox才1成多的市场啊
那叫一个艰难,跟m$对抗,然后为了兼容firefox
所有人都不惜去炒作ajax,其实ajax烂的一笔
但是有了ajax,就可以摆脱ie的垄断
然后google起来后,也开始搞chrome
形势才逐步改观,其实说白了,都是政治斗争
前端很多东西之所以难做,是因为政治斗争
标准说这样,ie说,不行,不听你的,我要这样
这样搞来搞去导致很多东西没法做
本身很简单的东西,被人为地搞复杂了
使得原本应该简化操作的脚本,反而因为需要去对付垮平台而变得复杂起来 |
|
b*****p 发帖数: 9649 | 20 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... 阅读全帖 |
|
w***g 发帖数: 5958 | 21 我要做一个网页,屏幕左边是一个树状菜单,每点一项会在右边打开对应的内容。
以前我一直使用ajax搞的,不用刷新页面,所以树的状态不会丢掉。
上次经版上搞人指点说ajax用户体验不好,现在想去掉ajax,每点一项都刷新
网页。现在的问题是网页一刷新左边树的展开状态就丢失了。
请问如何在页面之间保留书的展开状态。
多谢多谢! |
|
z****8 发帖数: 5023 | 22 哈哈 前端不懂 所以表达不清 sorry
搞定问题了。我加了一堆print 总算把情况搞明白了
我们这个input field有自动remove placeholder的JS code
但是这个code是在ajax之前执行的
ajax执行 是去数据库搜对应的zip code 返回来街道名称丢到 preload data里
然后run一遍preload 这时候的问题就是 placeholder本来给remove了
结果reload preload data又给加回来了。。
这就出问题了
我写了个if语句在reload里面 如果是从头执行 那么没数据的地方用placeholder
如果ajax里面执行reload 就不加placeholder |
|
w****j 发帖数: 5581 | 23 上次叙述了意大利史前时期的部落活动情况。然后,我们将注意力放到公元800BC-
500BC中段时间里与罗马史有关的意大利最重要的三个部落:Etruscan,Samnite和
Latin。其中,Etruscan对罗马早期政治社会形态的塑成是起了极大的作用的。前面说
过,Etruscan在公元1000年前后占据了意大利中部从Tiber河以北的西海岸到Po河流域
和其入海口的Adriatic沿岸的地区。Etruscan是怎样来到意大利并扩大他们的活动范围
的具体过程我们不可能知道了,不过后来从他们的定居点出土的文物(大多是公元前6
世纪到公元前3世纪的文物,一些墓葬和城市遗址里面出土的纪念碑则可以追溯到公元
前8世纪)则给现代考古学家提供了很多信息,从中一窥Etruscan人的政治社会运作,
他们的宗教,艺术和习俗。
公元前5世纪到公元前4世纪,Etruscan人在政治上形成由几个大城市组成的联盟。
Rostovtzeff对这个联盟称作帝国。首先,Etruscan人的这个联盟并非是一个中央集权
的国家,甚至是否可以称为是一个统一的国家都很可疑。而且,这个联盟本身的牢固程
度还随着时间流逝而愈... 阅读全帖 |
|
|
s*******y 发帖数: 558 | 27 yahoo最近有一轮大规模的hiring, 重点是Front End Engineer or QA Engineer (
job description 如下)。 如有兴趣请把你的resume发给我 r*****[email protected]
谢谢。
====================
# Front End Engineers
* 3+ years web application development including PHP 5, JavaScript,
Dynamic HTML & CSS and AJAX.
# Senior QA Engineers, Performance Specialists
* 5+ years of experience in Load and Performance testing of web
applications and back end and API testing; fluency with scripting languages;
experience with AJAX, HTML and XML; str |
|
t*********f 发帖数: 256 | 28 如题,职位是web engineer,希望有人可以用到。
第一次电话是recruiter的,按清单问了些问题:
1. say some http methods?
2. get/put difference?
3. what does DTD for xml mean?
4. common protocol used in layer 4?
5. describe different ways to use css in html?
6. difference between well-formed and valid xml?
前两天第二轮technical phone interview:
1. why and how did u get into web development?
2. what do u like about web development? not like about it?
3. why do u want to work for google? 我扯到ajax的推广,他顺着问 ajax
principle, security issue
4. what |
|
j****z 发帖数: 3 | 29 Yahoo is hiring for the following positions. Drop me a message and send
email to j***********[email protected] if interested.
1. Front End Engineers
* 3+ years web application development including PHP 5, JavaScript,
Dynamic HTML & CSS and AJAX.
2. Senior QA Engineers, Performance Specialists
* 5+ years of experience in Load and Performance testing of web
applications and back end and API testing; fluency with scripting
languages; experience with AJAX, H |
|
C*Y 发帖数: 736 | 30
1. bfs for sure.
2. siblings() is not correct. Tested with the following code:
|
|
x*****p 发帖数: 1707 | 31 There are more java postions than C/C++. However, a Java developer position
usually needs 5-7 years of experience, and more requirements are on J2EE
frameworks. You must know the following technology including Java.
1. JSP & Servlet, CSS, JavaScript, AJAX
2. Struts framework
3. Deeply understanding Hibernate
4. Deeply understanding Spring Framework
5. With GUI experience, usually AJAX or Flex. Recently Flex is very hot.
6. Experience in JMS and EJB
To grasp those technology, especially to handle |
|
F**********r 发帖数: 23 | 32 http://www.qiyi.com/common/employ.html
有意向者,请发邮件至z*****[email protected]
客户端技术经理招聘人数:1人 工作地点:北京
职责描述:
负责客户端开发及团队管理。
职位要求:
1.本科以上学历;
2.精通C/C++, 熟练使用Visual C++开发环境,编程风格清晰;
3.熟悉WTL或MFC界面编程,精通Windows平台用户界面开发技术, 熟悉各种控件定制编程
,熟悉D3D或opengl技术者优先;
4.有丰富的Windows平台下网络编程经验;
5.有媒体播放器开发经验, 熟悉DirectShow编程者优先;
6.具有P2P开发经验者, 熟悉BT等P2P协议;
7.五年以上开发经验,有开发大型客户端项目开发经验;
8.工作责任心强, 良好的沟通和团队合作能力, 可在项目压力下坚持工作;
9.优秀的团队组织能力、良好的沟通协调能力。
返回顶部↑
产品经理招聘人数:1人 工作地点:北京
职责描述:
1.负责网站的全面优化,监控网站关键字,监控和研究竞争对手及其他网站相关做法,
并围绕优化提出合理的网站调整建议;
2.负责公司网站的... 阅读全帖 |
|
W**********s 发帖数: 42 | 33 【 以下文字转载自 Working 讨论区 】
发信人: WebTemplates (web template), 信区: Working
标 题: McAfee Inc have several openings in Reston VA branch. We prefer CS/ECE major with MS+ degree.
发信站: BBS 未名空间站 (Fri Oct 8 11:50:23 2010, 美东)
The salary will range from 80 to 120K depends on qualification.
If you are interested, please send your resume to g*****[email protected]
1. Two Linux Experts (System admin, Packaging and Certification)
Responsibilities:
Create and maintain software installation/update package for Redha... 阅读全帖 |
|
s*******f 发帖数: 1114 | 34 Solid experience with HTML, CSS, Javascript,
following web standards and best practices.
experience working with AJAX (and popular
AJAX libraries) is a very strong plus.
看着要求好像是写网页的。不过我擅长的是unix c++。
是电话去要改,还是面完再说?
它网站上列了100多个software engineer 职位,实在看
不完 |
|
v*****k 发帖数: 7798 | 35 A start-up close to Los Angeles is hiring Senior Software Developers and
Senior Web Application Developers. Please send your resume to
v*****[email protected]
Senior Software Developer:
Responsibilities
Build and design desktop Java applications (e.g., data import,
conversion, text matching and integration utilities) for Windows
Design, implement, test, document, and support software technologies
that extend the Geosemble GeoXray product.
Work closely with other software engineers, research directors ... 阅读全帖 |
|
S***k 发帖数: 370 | 36 Please contact the recruiter directly. a********[email protected]
Seeking a Junior ASP.Net Developer that will be responsible for developing
critical applications that will give customers up to the minute info
regarding their shipping trends. This candidate work to create new client
facing website. The position will also work closely with data-base team to
develop back end architecture.
Jr. ASP.NET Developer
Contract to Hire
Pay Rate: $31 - $36/hour
Required Skills:
2+ years of developmen... 阅读全帖 |
|
m*****e 发帖数: 148 | 37 我们组正在招人,有意者请给我发邮件: m*******[email protected]
最好不要站内邮箱,我很少看
Web Software Engineer
KEY JOB RESPONSIBILITIES
• Minimum Degree in IT or Computer science
• Possess the technical competence to design, build, test and
maintain innovative Intranet based systems
• Strong knowledge in PHP is a must with hands on experience
• Have strong HTML skills and experience in HTML, AJAX, XML, CSS,
JAVASCRIPT
• Relational database design with MySQL
• Familiarity with v... 阅读全帖 |
|
d**********6 发帖数: 4434 | 38 a公司的面试,找web development。 Job description的时候要求可杂了,front
end的要求(html/css js),back end的也要(php java),移动的也要(ios adroid)
。第一轮问我有什么经验,我说我现在在维护一个公司的网站,从后台到前台一条龙。
他再问我喜欢什么方面的,我说我喜欢人机交换的,然后他给我一条面试题,现场写一
个star rating的界面,要用ajax传递rating结果。我写的肯定不能立刻就用上,因为
那些css和img会很乱,界面无法看的。就写个大概的样子,但他会不断叫你解释你的思
路。不是什么深奥的东西,轻松过关,但我之前的准备都是数据结构和算法的,突然来
这么一个题目让我很吃惊。网上面经里从来没见过有人提这样的面试题。
第二天就收到二面的通知,下一步是怎样的呢?大家有谱没谱?我贴职位要求出来给大
家看看:
Basic Qualifications
Experience in HTML, XHTML, Javascript, CSS, and general Web 2.0 techniques
Expe... 阅读全帖 |
|
a*******y 发帖数: 1040 | 39 how will you implement dictionary for client . suppose data is stored in
database .you don't need to implement dictionary but explain entire
interaction and systems involved .
The interviewer was not interested in knowing how dictionary is internally
implemented . he was more interested in understanding bigger picture ie.
high level , eg.
i explained you will have ajax call from client page to fetch matching words
, explained arguments that i will pass in ajax , explained high level server
side ... 阅读全帖 |
|
s*****I 发帖数: 23 | 40 Junior Application Dev (Midtown East)
HANGAR UNDERGROUND is a digital media analytics company, providing software
and decision services. We are looking for a junior engineer to help develop
and build out our collective vision.
The products are technically challenging and require a range of skill-
sets, ranging from complex modeling to data-driven collaboration tools,
intuitive user interfaces to cutting-edge decision structures
Work directly with the management team, helping to create an... 阅读全帖 |
|
b****w 发帖数: 71 | 41 之前或许有人看过我发的ebay的职位,现在又有三个职位,是software engineer。我
跟国内的一个recruiter是朋友,所以帮她发到这里看有没有人感兴趣。
1.Staff Software Engineer
Job Requirements
• BS/MS in CS or related field.
• 5 – 8 years experiences in requirements analysis, design, coding
and unit testing of high scalable, distributed and fault-tolerant
application
• Expertise required in object-oriented design methodology and
application development in Java and J2EE including Sprint, Hibernate, AJAX,
JQuery, servlets, JSP, Ja... 阅读全帖 |
|
C****f 发帖数: 302 | 42 我帮我的同事Sylvia在这里贴几个职位,招收software(testing)engineer.地点在
South San Francisco(zip94080)。 请有意者把简历发至s********[email protected]。
###############################################################
Software Engineer
Do you want to be a part of the next generation cloud based Life Sciences?
Then join a team at Thermo Fisher Scientific, located at South San Francisco
, that’s on the forefront of giving the best of fast-growing technology
trends like cloud computing & enabling innovations to improve human
conditions.... 阅读全帖 |
|
a****l 发帖数: 120 | 43 内推。net工作机会。工作地点在芝加哥loop,工作性质是contract。不过可以用opt。
具体详细招聘信息如下。不要太在意最后一行5年工作经验。如果有感兴趣的可以将简
历发给:k****[email protected]
Net Developer
Exp Global provides professional, technical and strategic engineering
consulting services to the world’s built and natural environments in six
key consulting practice areas: buildings, earth & environment, energy,
industrial, infrastructure, and sustainability. Formerly the Trow Global
group of companies, exp provides clients with access to our highly
experienced and creati... 阅读全帖 |
|
z******y 发帖数: 48 | 44 Vistaprint现有较多experienced Software Engineer position openings, 如有意愿
,可以直接简历发给我,可以帮忙内推。
地点:
- Lexington, MA
- Silver Spring, MD
待遇:(以下基于周围认识的Senior Software Engineer案例)
- Base: 100k-120k
- Bonus: 10k
- Benefit package 齐全(401k match, medical/vision/dental保险,life/
disability保险,+其他福利)
- vacation: 19-24 days per year
身份:
- 公司可sponsor H1B
- 工作满一年符合正常工作评价,公司可sponsor绿卡
职位:
- Senior Software Engineer
- Lead Software Engineer
- Senior Lead Software Engineer
职责:(以下基于Senior Software Engineer, 更高职位对应更广责任范围)
... 阅读全帖 |
|
H********e 发帖数: 5 | 45 招聘流程很快,真的是急需
有兴趣的请发简历到
[email protected]
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
下面是公司简介和职位要求:
Healthline Networks, 100多人的小公司在SF,
UI组也不大<10,
UI的projects比较多,
Career空间比较好,
有很大机会成为Team Lead,
... 阅读全帖 |
|
s*******e 发帖数: 261 | 46 想申请entry -level Java developer position.
请问这个课程表是否覆盖基本的技能要求?
Topic Topic Details
JAVA History Of Java
Java DataTypes
Latest fetaures in JDK 1.5 and Above
Installation & Configuration Of java
First Program in Java using IDE (eclipse)
Oops - Concepts with Examples
Core Java Concepts
Java Threads
Exception Handling
Java IO
JDBC Concepts
Lab session
J2EE Introduction to J2EE Concepts
Introdu... 阅读全帖 |
|
j**********3 发帖数: 3211 | 47 这东西怎么做出来的呢?啥原理啊。。。
我的问题 1: 一个人写,怎样边写边提交到server?我知道angular和react都有这个功
能,难道是一边写,就随时ajax post到server?最关键的是,对方是怎样能同时看到
你写的?难道也是按微秒计算 time out来ajax get server的数据么?
问题2: 俩人同时写一个地方,怎么样syc啊,不是乱了么?这个问题好像要基于上边那
个问题。。。
大牛们来缩缩,让小的涨涨见识 |
|
h*******y 发帖数: 37 | 48 已经好几个onsite了到目前还未收到offer
打滚求版上朋友各种内推
刚收到结果已跪
听说报面经涨人品,发一个
刚面的groupon palo alto office的 software engineer - front end
一共是两轮电面加上onsite 五轮,电面是一轮后端 一轮前端,onsite五轮是两个前端
一个后端两个vp
电面:
第一轮 manager 后台的
问了一些html5的属性
然后一道算法题目并且写测试
"Buy 3 pairs of socks for $4.50"
"Buy 3 pairs of socks for $4 2/4"
Requirements:
- Must have a denominator of 4: eg 4.50 => 4 2/4
- If numerator is 0, then don't show the fraction: eg 4.00 => 4
- If the integer part is 0, then don't show it! eg 0.75 => 3/4
- For negative input, th... 阅读全帖 |
|