showpic.js

来自「时尚数码平台登录模块 strut2+hibernate整合 四层架构 底层数据库」· JavaScript 代码 · 共 11 行

JS
11
字号
      function showPic(whichpic)
     {
       var sourse = whichpic.getAttribute("href");
       var placeholder = document.getElementById("placeholder");
       placeholder.setAttribute("src",sourse);
       var text = whichpic.getAttribute("title");
       var description = document.getElementById("description");
       description.firstChild.nodeValue = text;
       //alert(description.firstChild.nodeValue);
     }

⌨️ 快捷键说明

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