首页
统计
关于
友情链接
免责声明
推荐
咔咔工具
咔咔导航
mitce加速器
Search
1
在线Q绑查询手机号、微博查询手机号 api接口 – XApi
14,457 阅读
2
完整的chatgpt商业版源码
3,455 阅读
3
超级好看的chatgpt商业化完整版本 带搭建教程
2,619 阅读
4
Chatbot UI-开源AI聊天用户界面 免翻使用ChatGPT 支持GPT-4
2,419 阅读
5
ChatGPT公众号版破解授权、扩展、支持AI绘画。一键安装!
2,215 阅读
📕生命·生活·书
📚 学无止境
🎵音乐分享
📺 影视资源
🚁 软件游戏
📁 源码分享
🤖 ChatGPT
🌥️ VPS推荐
登录
Search
标签搜索
源码
软件
ChatGPT
电影
vps
音乐
分享
模版
心情
教程
网盘
免费
游戏
IDM
Linux
特效
CDN
工具
脚本
AI
咔咔猪
累计撰写
519
篇文章
累计收到
472
条评论
首页
栏目
📕生命·生活·书
📚 学无止境
🎵音乐分享
📺 影视资源
🚁 软件游戏
📁 源码分享
🤖 ChatGPT
🌥️ VPS推荐
页面
统计
关于
友情链接
免责声明
推荐
咔咔工具
咔咔导航
mitce加速器
搜索到
519
篇与
的结果
2023-04-19
JS获取url参数 比如?id=
复制下方代码,自定义一个公共js文件function getUrlKey (name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1].replace(/\+/g, '%20')) || null }页面引入,调用方法<script> var GetId = getUrlKey('id') var GetPage = getUrlKey('page') console.log(GetId) console.log(GetPage) </script>通过上方方法,你就可以简单获取到对应的参数,通过参数你就可以为所欲为了呀!例如 https://kkpig.cn/?id=520&page=1314 最终打印结果为 520 和 1314
2023年04月19日
150 阅读
0 评论
0 点赞
2023-04-19
JS如何实现点击复制功能,JS点击复制文本
div,p等标签不可以,建一个文本框标签,不能给display:none; 我们需要对他进行一个定位,让透明看不见找不到,点击复制,将需要复制的内容赋值给文本框,接着对文本框进行全选,在进行复制操作即可<p id="content">咔咔猪分享创造快乐-kkpig.cn</p> <textarea id="text" style="position: fixed;top: 10000px;left: 10000px;opacity: 0;"></textarea> <button id="CopyBtn">点击复制</button><script> var content = document.getElementById("content").innerText; var text = document.getElementById("text"); var CopyBtn = document.getElementById("CopyBtn"); CopyBtn.onclick = function(){ // 将需要复制的内容赋值给文本框 text.value = content; // 选中文本框的内容 text.select(); // 对选中的内容进行复制 document.execCommand("copy"); } </script>
2023年04月19日
160 阅读
0 评论
0 点赞
2023-04-19
JS截取字符串前几位或者截取字符串后几位
经常会遇到后台反的时间是‘2020-02-02 10:00:00’,页面上需要只展示年月日或者只展示时分秒,那么最简单的方法就是返回过来的值直接截取一下即可。如何截取前几位,案例如下var date = '1996-10-22 22:55:33'; var key = date.substring(0,10); console.log(key); // 打印结果:1996-10-22如何截取后几位,案例如下var date = '1996-10-22 22:55:33'; var dateLength = date.length; var key = disName.substring(dateLength-8,dateLength); console.log(key); // 打印结果:22:55:33总结substring(a,b);a 表示从第几位开始,b 表示到第几位结束,理解下来就是从 a 截取到 b 。
2023年04月19日
109 阅读
0 评论
0 点赞
2023-04-19
卸载工具:IObit Uninstaller Pro v12.4.0 专业绿色便携版
IObit Uninstaller 是一种功能强大的卸载工具,可帮助您快速方便地从计算机中移除不需要的程序和文件夹。它不仅仅可以从计算机中卸载应用程序,还可以移除它们的卸载残留。可以检测和分类所有已安装的程序,并可以批量卸载,只需一键点击即可! 通过“强大扫描”和“强制卸载”功能,您将不再受到残留文件或顽固的工具栏的困扰。 是可移植的,因此您不必安装。您可以将此程序放在可移动驱动器上,并直接在任何计算机上运行其可执行文件。I易于使用,功能强大。初始化时自动显示已安装程序的列表,您可以在其中查看每个软件的名称,大小和安装日期。官网:https://www.iobit.com之前介绍过很多软件移除工具,譬如说相当好用的 Uninstall Tool,而 IObit 移除工具跟其他软件其实差不多,也支持了垃圾文件、登录文件扫描功能,此外还很贴心的用不同分页将最近安装的、文件超大的、不常使用的…等不同状态的软件用不同分页展示,让我们可以快速选择和移除你不需要的软件。除此之外,IObit Uninstaller也把 IE, Firefox 与 Google Chrome 等浏览器的工具栏、插件与拓展等移除功能另外用分页展示,让我们可以在不小心安装了奇奇怪怪的 Toolbar 之后,可以通过移除工具快速选择、移除,甚至还可让我们解决 IE 首页绑架、搜索引擎绑架等问题,有这类困扰的网友可以下载来试试看。新版变化[V12.4-2023年4月10日]1 =优化捆绑软件数据库,更准确的检测更多捆绑软件2 =扩展了数据库,可以删除多达24%的恶意广告插件3 =修复了所有已知错误下载:https://kkpig.lanzoub.com/ibLUL0tu4uaj密码:kkpig
2023年04月19日
190 阅读
0 评论
0 点赞
2023-04-19
漂亮的个人主页单页HTML引导页
做个简单的引导页面挺好看的下载地址:https://kkpig.lanzoub.com/iyA160tg9wif
2023年04月19日
169 阅读
0 评论
0 点赞
2023-04-19
很多人不知道《互联网信息服务投诉平台正式发布》
投诉互联网信息服务相关的问题投诉网址:https://ts.isc.org.cn/
2023年04月19日
104 阅读
0 评论
0 点赞
2023-04-19
2023最新ChatGPT源码/支持用户付费套餐
第一步-配置APIKEY:在"index.php"最顶部配置自己的APIKEY,不然网站无法使用!第一步-配置数据库:lib/config.php第三步-导入数据库第四步-PHP选择:7.3第五步-访问网页即可!隐藏内容,请前往内页查看详情
2023年04月19日
282 阅读
4 评论
0 点赞
2023-04-16
Claude注册和使用教程,其功能和ChatGPT差不多
Claude是一款人工智能聊天机器人。主要有以下特征:使用自己的模型与训练方法,而不是基于GPT-3等开源框架。模型采用Transformer编码器与解码器的结构,并使用对话上下文的双向LSTM进行响应生成。Claude训练语料来自人工标注的海量中文对话数据,接近数十亿字。训练目标是让机器人可以进行连贯、知识丰富且上下文感知的对话。Claude理解中文用户的语言习惯和思维方式,能够展现出个性化的语言表达。而不是直接翻译自英文chatbot。Claude提供一个开放的技术平台,用户可以通过简单的接口来实现与我的交互,并在自己的产品与服务中集成。Claude的对话知识与回复能力还在不断提高,但仍无法匹配人类。更适合作为一个智能助手来辅助用户解答问题,而不是完全替代人工客服。Claude的创始团队由来自语言技术与人工智能领域的技术专家组成。他们的使命是打造一个智能且易于集成的聊天机器人平台。我的名字Claude来自《霍比特人》中的角色,是一个机智的半身人。我们希望这可以体现出机器人的友善与智慧。 总之,Claude是一个致力于对话场景下的AI助手,我们的目标是为用户提供方便与有趣的人机交互体验。我们还有很长的路要走,但我相信通过不断学习和提高,Claude一定会越来越聪明,为用户创造更大价值。(来自于Claude的介绍)Claude注册Claude是slack中的一个应用,要想使用Claude,要先注册slack平台工作区。具体方法如下:1、在 https://slack.com/get-started#/create 建立工作空间,输入邮箱,写入验证码即可;2、给工作区取名字、邀请用户可以跳过或者按照实际情况操作;3、在工作区添加应用,点击 Claude 即可;或者是在已经登陆的工作区新开浏览器窗口 进入 https://www.anthropic.com/claude-in-slack 添加即可;4、在工作区左侧,点击 Claude logo开始使用,如果Claude跟你讲的语言看不懂,可以告诉他:用英文 或者是 用中文;现在就可以和他对话了 让他写一个脚本看看这段脚本会提供几个测速节点的选择,选择一个节点后会进行上传测速,最后显示测速结果和上传带宽,并询问是否继续测速其他节点。脚步文件:https://kkpig.lanzoub.com/iDO7r0t6tpyj
2023年04月16日
178 阅读
0 评论
0 点赞
2023-04-16
缤纷彩色文字广告代码,文字广告代码美化版,给网站添加文字广告教程
PC端时代码为8个文字块一行,H5为4个文字代码一行,所以大家添加文字广告为8、16、24...... 只要是8的倍数即可,当然推荐添加2行效果最好。由于考虑到大家的网站有暗黑模式,所以在这方面也进行了简约的优化,适用于白天与晚上模式。下载地址:https://kkpig.lanzoub.com/i1xPJ0t6hqze白天模式css<style type="text/css"> .tp-ad-text1 {width:100%;padding-top:6px;box-sizing:border-box;overflow: hidden;background: rgba(255,255,255,.2);} .tp-ad-text1 a {color:#7fba00;font-size:14px;line-height:38px;text-align:center;border:1px dashed rgba(0,0,0,.2);padding:0 3px;box-sizing:border-box;float:left;width:11.5%;height:38px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:0 0.5% 6px;text-decoration:none;transition:all .6s;} .tp-ad-text1 a:hover {font-weight: bold;color:#fff!important;background:#7fba00;transition: all .6s;} .tp-ad-text1 a:nth-child(2n) {color:#f74e1e;} .tp-ad-text1 a:nth-child(2n):hover {background:#f74e1e;border-color: #f74e1e;} .tp-ad-text1 a:nth-child(3n) {color:#00a4ef;} .tp-ad-text1 a:nth-child(3n):hover {background:#00a4ef;border-color: #00a4ef;} .tp-ad-text1 a:nth-child(4n) {color:#0517c2;} .tp-ad-text1 a:nth-child(4n):hover {background:#0517c2;border-color: #0517c2;} .tp-ad-text1 a:nth-child(5n) {color:#601165;} .tp-ad-text1 a:nth-child(5n):hover {background:#601165;border-color: #601165;} .tp-ad-text1 a:nth-child(6n) {color:#ffb900;} .tp-ad-text1 a:nth-child(6n):hover {background:#ffb900;border-color: #ffb900;} .tp-ad-text1 a:nth-child(7n) {color:#0fc317;} .tp-ad-text1 a:nth-child(7n):hover {background:#0fc317;border-color: #0fc317;} .tp-ad-text1 a:nth-child(8n) {color:#601165;} .tp-ad-text1 a:nth-child(8n):hover {background:#601165;border-color: #601165;} .tp-ad-text1 a:nth-child(9n) {color:#fba78f;} .tp-ad-text1 a:nth-child(9n):hover {background:#fba78f;border-color: #fba78f;} .tp-ad-text1 a:nth-child(10n) {color:#13cf8f;} .tp-ad-text1 a:nth-child(10n):hover {background:#13cf8f;border-color: #13cf8f;} .tp-ad-text1 a:nth-child(11n) {color:#f74e1e;} .tp-ad-text1 a:nth-child(11n):hover {background:#f74e1e;border-color: #f74e1e;} .tp-ad-text1 a:nth-child(12n) {color:#ffb900;} .tp-ad-text1 a:nth-child(12n):hover {background:#ffb900;border-color: #ffb900;} .tp-ad-text1 a:nth-child(13n) {color:#fba78f;} .tp-ad-text1 a:nth-child(13n):hover {background:#fba78f;border-color: #fba78f;} .tp-ad-text1 a:nth-child(14n) {color:#f74e1e;} .tp-ad-text1 a:nth-child(14n):hover {background:#f74e1e;border-color: #f74e1e;} .tp-ad-text1 a:nth-child(15n) {color:#7fba00;} .tp-ad-text1 a:nth-child(15n):hover {background:#7fba00;border-color: #7fba00;} .tp-ad-text1 a:nth-child(16n) {color:#0fc317;} .tp-ad-text1 a:nth-child(16n):hover {background:#0fc317;border-color: #0fc317;} .tp-ad-text1 a:nth-child(17n) {color:#0517c2;} .tp-ad-text1 a:nth-child(17n):hover {background:#0517c2;border-color: #0517c2;} .tp-ad-text1 a:nth-child(18n) {color:#13cf8f;} .tp-ad-text1 a:nth-child(18n):hover {background:#13cf8f;border-color: #13cf8f;} .tp-ad-text1 a:nth-child(19n) {color:#ffb900;} .tp-ad-text1 a:nth-child(19n):hover {background:#ffb900;border-color: #ffb900;} .tp-ad-text1 a:nth-child(20n) {color:#f74e1e;} .tp-ad-text1 a:nth-child(20n):hover {background:#f74e1e;border-color: #f74e1e;} @media screen and (max-width: 1198px){ .tp-ad-text1 a{ width: 24%; } } </style>HTML <div class="tp-ad-text1"> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="咔咔猪" target="_blank">咔咔猪</a> <a href="http://kkpig.cn/" title="http://kkpig.cn/" target="_blank">http://kkpig.cn/</a> </div>
2023年04月16日
142 阅读
0 评论
0 点赞
2023-04-16
计算出生至今活了多少天引流HTML页面
引流HTML单页面,选择出生年月日,然后计算出自己从出生至今活了多天。单页面,下载源码上传自己服务器即可。下载地址:https://kkpig.lanzoub.com/i8tZ60t6gtri
2023年04月16日
148 阅读
0 评论
0 点赞
2023-04-16
zibll子比主题最新可用免授权修复完美版6.9.2
此版本仅仅提供研究学习,如要使用请支持正版安装后,点击授权即可,免授权修复了上次版本的部分bug下载地址:https://kkpig.lanzoub.com/i1WEU0t4edta密码:kkpig
2023年04月16日
111 阅读
0 评论
0 点赞
2023-04-16
【全网首发】花800买的抖音标签检测
最近很火的抖音标签限流检测,一场直播都3位数起步。你发布的每一个视频,抖音都会给你赋值三个标签,一个父标签,两个子标签,这个标签代表着你的视频的定位,你所有视频的标签代表着你这个账号的定位,如果你的视频标签很杂,那肯定不会火。要知道,抖音上99%的人都想火,但是只有2%的人的粉丝过万,其余的都是不火的,很多宝妈,想靠抖音赚钱的都想火却火不了,这个时候你拿着这个直播去给别人检测标签,还能优化定位,会吸引很多人,刚开始人少的时候免费查,后面上人了再收礼物插队,榜一先测,一晚上礼物都能赚不少,还没说收徒的。4.0版本新增【单作品标签检测】【互关检测】【单作品限流检测】【定位申请动画】【最后更新时间】【断更时间】【作品黄金发布时间】【账号估值】使用方法,上传解压后直接使用,想修改默认视频直接修改第一行抖音分享的链接隐藏内容,请前往内页查看详情
2023年04月16日
384 阅读
3 评论
0 点赞
1
...
33
34
35
...
44