js报错原因:输入的意外终止…… 页面代码写的不规范啊……其中的某条语句,没有正常结束…… 或者部分语句“‘’”双引号,单引号没有配对好,被转义了之类的……错误造成的代码: 修改后:
分类:
其他好文 时间:
2014-12-18 13:27:09
阅读次数:
878
https://github.com/h5bp/Front-end-Developer-Interview-Questions#contributors1. 一般性问题 What did you learn yesterday/this week?What excites or interests ...
分类:
其他好文 时间:
2014-12-18 11:45:57
阅读次数:
555
webStorm?: UserName:William =====?LICENSE?BEGIN?===== 45550-12042010 00001SzFN0n1bPII7FnAxnt0DDOPJA INauvJkeVJBuE5bqLEznccE4tet6tr RiyoMxDK8oDY93tx!ipPyGmqYYeWxS =====?LICENSE?END?===== Use...
分类:
Web程序 时间:
2014-12-17 22:49:23
阅读次数:
583
循环结构:1、 LOOP循环结构 语法: LOOP 要执行的语句; EXIT WHEN --条件满足则退出循环 END LOOP; 示例:循环输出1-10的整数 DECLARE v_num NUMBER := 1;BEGIN LOOP DBMS_O...
分类:
数据库 时间:
2014-12-17 22:21:50
阅读次数:
229
1. 格式化对齐:Ctrl+K+F
2. 智能感知:Ctrl+J;
3. 智能感知显示参数信息:Ctrl+Shift+空格;
4. 检查括号匹配(在左右括号间切换): Ctrl +]
5. 选中从光标起到行首(尾)间的代码: Shift + Home(End)
6. 在方法定义和调用之点切换:Ctrl+Shift+7(8)
7. 设置断点:F9
8. 使用Tab增加缩进,Shift+...
分类:
其他好文 时间:
2014-12-17 21:02:53
阅读次数:
211
先看下面这段程序:int arr[1][10] = {0,1,2,3,4,5,6,7,8,9};for (auto *p = arr;p != end(arr); p++){ cout << "p is " << typeid(p).name() <<endl; cout << "*p ...
分类:
编程语言 时间:
2014-12-17 20:38:32
阅读次数:
270
一、控制语句1、if语句语法:IF THEN PL/SQL和SQL语句END IF;示例:DECLARE v_count NUMBER := &n;BEGIN IF v_count > 0 THEN DBMS_OUTPUT.put_line('正数'); END IF;EN...
分类:
数据库 时间:
2014-12-17 20:29:52
阅读次数:
209
【题目】
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remai...
分类:
其他好文 时间:
2014-12-17 18:37:28
阅读次数:
188
/** ?* main external API structure. ?* New fields can be added to the end with minor version bumps. ?* Removal, reordering and changes to existing fields require a major ?* version bump. ?* P...
分类:
其他好文 时间:
2014-12-17 16:37:55
阅读次数:
1015
整理自:http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543139.html1.table.concat(table, sep, start, end)concat是concatenate(连锁, 连接)的缩写. table.concat()...
分类:
其他好文 时间:
2014-12-17 16:15:29
阅读次数:
183