- 浏览: 9188 次
- 来自: 武汉
最新评论
文章列表
运行app,报错,是由于app所使用的端口被占用。
javascript 遍历对象
- 博客分类:
- javascript
var test = {
a:"aa",
b:"bb",
c:"cc",
d:"dd",
e:"ee",
f:"ff"
}
for(var p in test){
alert(test[p])
}
//输出 aa bb cc dd ee ff
int arr[] = {2,3,4} ;
for (int i : arr) {
System.out.print(i+" ");
}
//输出 2 3 4
var test = ["a","b","c","d"]
for(var p in test){
alert(p)
}
//输出 0 1 2 3
结论:由于javascript是弱类型,得到下标是比较安全的。而java由于对类型规定比较严格,foreach做封装的时候直接通 ...
闭包内定义局部变量
- 博客分类:
- javascript
function test(){
test1()
alert(aaaa)
}
function test1(){
window.aaaa = "测试一"
}
test() //输出"测试一"
function test(){
test1()
alert(aaaa)
}
function test1(){
var aaaa = "测试二"
}
test() //报错"aaaa is not defined"
- 2012-06-28 19:47
- 浏览 593
- 评论(0)
<input type="checkbox" id="test1"></input>
alert($("#test1").val()) //无论是否选中都输出on
<input type="checkbox" id="test2"></input>
alert($("#test2").attr("checked")) //如果选中输出checked,未选中输出undefined
...
让元素只能够在固定大小的div内显示
- 博客分类:
- html+css
<div></div>
div{width:200px;height:300px;overflow:hidden;}
默认情况下div并不会给自己加上滚动条,如果数据超出就会超出div外显示。
加了滚动条,内容就只能在规定的width与height中显示
struts1 +java 下载pdf
- 博客分类:
- java
public ActionForward readPDF(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
String newsFilePath = request.getParameter("newsFilePath");
String newsTitle = request.getParameter("newsTitle");
...
var test = {
"text" : "任务组3",
"nodeType" : "任务组",
"tabid" : "procedure_one",
"children" : [{
"text" : "新任务1",
"nodeType" : "任务",
"tabid" : "procedure_one ...