js共3篇

帝国cms内容页实现点击按钮后js随机跳转到一篇文章

帝国cms内容页实现点击按钮后js随机跳转到一篇文章-HostJL-VPS主机交流
上代码: <script> function randArticle1(){ let as=$('.click-ul').children('li'); url=$(as[Math.floor(Math.random()*as.length)]).children('a').first().attr('href'); if(url==''...
Hostjl的头像-HostJL-VPS主机交流Hostjl2年前
06114

网页js代码禁止屏蔽右键菜单屏蔽复制屏蔽剪切屏蔽选中

网页js代码禁止屏蔽右键菜单屏蔽复制屏蔽剪切屏蔽选中-HostJL-VPS主机交流
放到全局JS里即可 //屏蔽右键菜单 document.oncontextmenu = function (event){ if(window.event){ event = window.event; }try{ var the = event.srcElement; if (!((the.tagName == 'INPUT' &...
Hostjl的头像-HostJL-VPS主机交流Hostjl2年前
0319

html+js三级联动菜单对应选项

html+js三级联动菜单对应选项-HostJL-VPS主机交流
效果图: 完整代码: <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <title>Document</title> <script type='text/javascript' src...
Hostjl的头像-HostJL-VPS主机交流Hostjl2年前
03014