📄 js.js
字号:
function showimage(){
document.images.image_img1.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/1.gif";
document.images.image_img2.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/2.gif";
document.images.image_img3.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/3.gif";
document.images.image_img4.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/4.gif";
document.images.image_img5.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/5.gif";
document.images.image_img6.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/6.gif";
document.images.image_img7.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/7.gif";
document.images.image_img8.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/8.gif";
document.images.image_img9.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/9.gif";
document.images.image_img0.src="image/"+document.form.picture.options[document.form.picture.selectedIndex].value+"/0.gif";
}
function New(para_URL){var URL=new String(para_URL);window.open(URL,'','resizable,scrollbars')}
function ToggleNode(nodeObject, imgObject,imgout,imgover){
if (nodeObject.style.display == '' || nodeObject.style.display == 'inline') {
nodeObject.style.display = 'none';
imgObject.src=imgover;
} else {
nodeObject.style.display = 'inline';
imgObject.src=imgout;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -