[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

二十元求修改java脚本和css

做了一个字典。
字典解包,要用MdxExport.3.5 。打包用MdxBuilder 3.0 Beta2 。
字典在链接:https://pan.baidu.com/s/1JgErw08h0PatNFKEbc14_Q 提取码:e9h7 。
附件是其中要修改的东西。

java脚本,前后是别人的两个东西,因为格式不一样,放在一起,影响效率(点击不动?)。能不能改成前面一样。从window.onload =开始是第二个的。
css希望修改成为点击链接,可以变色,返回去,是蓝色。89行加了代码,不运行。
其中有个字族索引,打开很慢,有没有办法?

一个二十元。

谢谢!

把解包、打包、阅读的软件传网盘发出来
提供bat代写,为你省时省力省事,支付宝扫码头像支付
微信: unique2random

TOP

本帖最后由 lxh623 于 2019-5-19 17:47 编辑

回复 2# zaqmlp
链接:https://pan.baidu.com/s/1mqfclA_b5Aju2jRZ5gHVhg
提取码:7zu6


手机端软件一个是很早以前的PJ版,一个是免费版。正版也只有20,在TB有。正板可以不限的全文搜索。

TOP

最主要的一个,觉得脚本影响效率。想把两个脚本合并在一起,同样的风格。
代码一:
  1. window.onload=function(){
  2. JTsetup('x-hw');
  3. iterationSetup();
  4. specialSetup();
  5. };
  6. function specialSetup(){
  7. var _xa=document.querySelectorAll('x-a');
  8. if(!_xa[0]) return;
  9. for(var i=0; i<_xa.length; ++i)
  10. _xa[i].parentNode.setAttribute('x-meaning', '');
  11. }
  12. function iterationSetup(){
  13. var _hw=document.querySelectorAll('x-hw');
  14. if(_hw.length<2) return;
  15. for(var i=0; i<_hw.length; ++i){
  16. var _it=document.createElement('sup');
  17. _it.textContent=(i+1);
  18. _hw[i].appendChild(_it);
  19. }
  20. }
  21. function JTsetup(str){
  22. var _eles=document.querySelectorAll(str);
  23. if(_eles.length<2){
  24. if(!!_eles[0]){
  25. _eles[0].removeAttribute('onclick');
  26. }
  27. return;
  28. }
  29. for(var i=0; i<_eles.length; ++i){
  30. _eles[i].setAttribute('onclick', scrollPosition(_eles[i==_eles.length-1?0:i+1]));
  31. }
  32. }
  33. function scrollPosition(target){
  34. var _id=target.getAttribute('id');
  35. if(!_id){
  36. _id='random'+Math.round(Math.random()*1048576);
  37. target.setAttribute('id', _id);
  38. }
  39. if(!isBluedict())
  40. return "window.location.href='#"+_id+"'";
  41. return "window.location.href='entry://#"+_id+"'";
  42. }
  43. function isBluedict(){
  44. return !!document.querySelector('.bd_body');
  45. }
复制代码
代码二:
  1. window.onload = function(){
  2. if(document.getElementById("img_ysxs")){
  3. document.getElementById("img_ysxs").style.maxWidth="100%";
  4. document.getElementById("img_ysxs").onclick=function(){
  5. var now = document.getElementById ("img_ysxs");
  6. var i = now.style.maxWidth
  7. if(i=="100%"){document.getElementById("img_ysxs").style.maxWidth="none";}else{document.getElementById("img_ysxs").style.maxWidth="100%";}
  8. };
  9. };
  10. if(document.getElementById("img_zxyb")){
  11.   document.getElementById("img_zxyb").style.maxWidth="100%";
  12.   document.getElementById("img_zxyb").onclick=function(){
  13. var now = document.getElementById ("img_zxyb");
  14. var i = now.style.maxWidth
  15. if(i=="100%"){document.getElementById("img_zxyb").style.maxWidth="none";}else{document.getElementById("img_zxyb").style.maxWidth="100%";}
  16. };
  17. };
  18. };
复制代码

TOP

返回列表