headerhover.js

来自「javascript 很酷的类库」· JavaScript 代码 · 共 20 行

JS
20
字号
isc.ListGrid.create({    ID: "countryList",    width:500, height:224, alternateRecordStyles:true, showAllRecords:true,    data: countryData,    fields:[        {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png",            prompt:"Small image of national flag"        },        {name:"countryName", title:"Country",            prompt:"Conventional short form of country name"        },        {name:"capital", title:"Capital",            prompt:"Location of seat of government"        },        {name:"independence", title:"Nationhood", type:"date",            prompt:"Date of sovereignty, founding, or other significant nationhood event"        }    ]})

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?