代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/488602/1228441
js script.js
window.onload = initImages;
function initImages() {
for (var i=0; i
www.eeworm.com/read/488602/1228442
js script.js
window.onload = initForm;
function initForm() {
var allTags = document.getElementsByTagName("*");
for (var i=0; i -1) {
allTa
www.eeworm.com/read/488602/1228443
js script.js
document.onmousemove = moveHandler;
function moveHandler(evt) {
if (!evt) {
evt = window.event;
}
animateEyes(evt.clientX,evt.clientY);
}
function animateEyes(xPos,yPos) {
var rightEye = docum
www.eeworm.com/read/488602/1228444
js script.js
document.onkeydown = keyHit;
var thisPic = 0;
function keyHit(evt) {
var myPix = new Array("images/callisto.jpg","images/europa.jpg","images/io.jpg","images/ganymede.jpg");
var imgCt = myPix.length
www.eeworm.com/read/488602/1228445
js script.js
window.onload = initForm;
function initForm() {
var allTags = document.getElementsByTagName("*");
for (var i=0; i
www.eeworm.com/read/488602/1228446
js script.js
window.onload = initDate;
function initDate() {
var dayName = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var monName = new Array("January", "February",
www.eeworm.com/read/488602/1228447
js script.js
window.onload = showDays;
function showDays() {
var allTags = document.getElementsByTagName("*");
for (var i=0;i -1) {
a
www.eeworm.com/read/488602/1228448
js script.js
window.onload = showTheTime;
function showTheTime() {
var now = new Date();
var theTime = showTheHours(now.getHours()) + showZeroFilled(now.getMinutes()) + showZeroFilled(now.getSeconds()) + showA
www.eeworm.com/read/488602/1228449
js script.js
window.onload = initAll;
function initAll() {
document.getElementsByTagName("form")[0].onsubmit = addNode;
}
function addNode() {
var inText = document.getElementById("textArea").value;
var newTe
www.eeworm.com/read/488602/1228450
js script.js
window.onload = initAll;
var nodeChangingArea;
function initAll() {
document.getElementsByTagName("form")[0].onsubmit = nodeChanger;
nodeChangingArea = document.getElementById("modifiable");
}
fun