1、让web页面的输入框是数字键盘html 中 input 的 type = "tel"
分类:
移动开发 时间:
2014-06-04 19:22:29
阅读次数:
208
为表单元素label加上for属性。粉色
for属性能让点击label标签的时候,同时focus到对应的input和textarea上,增加响应区域。其中for取值和input中id取值要一致(兼容ie)
分类:
其他好文 时间:
2014-06-04 18:45:10
阅读次数:
194
Given a binary tree, determine if it is a valid
binary search tree (BST).Assume a BST is defined as follows:The left subtree of
a node contains only n...
分类:
其他好文 时间:
2014-06-03 14:00:56
阅读次数:
281
* placeholder 在 focus 状态下内容为空时,依然显示文字。和
IE11,Firefox 均不一致;input:focus::-webkit-input-placeholder { color: transparent;}
分类:
Web程序 时间:
2014-06-03 12:58:41
阅读次数:
278
Given a roman numeral, convert it to an
integer.Input is guaranteed to be within the range from 1 to
3999.找到规则即可罗马数字的表示:I~1 V~5 X~10 L~50 C~100 D~500 ...
分类:
其他好文 时间:
2014-06-03 12:09:16
阅读次数:
210
原题地址:https://oj.leetcode.com/problems/reverse-words-in-a-string/题意:Given
an input string, reverse the string word by word.For example,Given s = "the s...
分类:
编程语言 时间:
2014-06-03 11:13:36
阅读次数:
258
这里仅仅说明一个可能造成该问题的解决办法,也是我遇到的原因。这句话的意思是说,eclipse须要至少1.6版本号或以上的JVM
,而你仅仅有1.5.2版本号的JVM。想想就认为非常奇怪,我装的但是JDK1.7,怎么可能出现这样的问题。然后cmd执行java -version
结果出乎意料的显示了jd...
分类:
其他好文 时间:
2014-06-03 08:49:17
阅读次数:
218
因为远程验证用户名时可能会出现几种错误情况:1.用户名字符非法;2.长度超限;3.用户名已经存在;但remote返回的内容只能是布尔型的,即使用dataFilter来过滤也不知道如何对应的把错误信息也显示出来。下面是一段尝试代码,不过提示的效果不好,dataFilter:
function(data...
分类:
Web程序 时间:
2014-06-03 08:27:25
阅读次数:
278
DescriptionGiven a set of sticks of various
lengths, is it possible to join them end-to-end to form a square?InputThe first
line of input contains N, ...
分类:
其他好文 时间:
2014-05-30 21:21:54
阅读次数:
284
Given an input string, reverse the string word
by word.For example,Given s = "the sky is blue",return "blue is sky the".click
to show clarification.Cl...
分类:
其他好文 时间:
2014-05-30 16:25:58
阅读次数:
233