当前位置:首页 > 文章列表 > 文章 > python教程 > 如何用正则提取HTML内容

如何用正则提取HTML内容

2025-06-28 14:49:53 0浏览 收藏

从现在开始,我们要努力学习啦!今天我给大家带来《如何用正则提取HTML特定内容》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!

正则表达式可用于提取HTML中的特定内容,但并非最佳工具,推荐使用BeautifulSoup等库。1. 提取标签内文本可用类似(.*?)的正则,捕获组提取所需内容;2. 提取属性值如图片src可用,并可通过src=(['\"])(.*?)\1兼容单双引号;3. 匹配带特定类名的标签内容如

...
可用
([\s\S]*?)
,但嵌套结构可能导致匹配失败;建议测试时用真实数据、多用非贪婪模式,并在复杂结构中优先选用HTML解析库以避免问题。

如何使用正则表达式提取HTML中的特定内容?

在处理网页数据时,提取HTML中的特定内容是很常见的需求。正则表达式(Regex)虽然不是解析HTML的最佳工具(推荐用BeautifulSoup或类似库),但在简单场景下,它仍然是一种快速有效的方法。

如何使用正则表达式提取HTML中的特定内容?

匹配标签内的文本内容

如果你只想提取某个标签之间的文本,比如</code>标签里的标题,可以用如下正则:</p><img src="/uploads/20250628/1751093373685f907def592.png" alt="如何使用正则表达式提取HTML中的特定内容?"><pre><title.*?>(.*?)</title></pre><p>这个表达式的意思是:</p><ul><li><code>.*?</code> 表示非贪婪匹配任意字符</li><li><code>(.*?)</code> 是一个捕获组,用来提取你真正想要的内容</li></ul><p>例如,面对这段HTML:</p><img src="/uploads/20250628/1751093374685f907e08f7a.png" alt="如何使用正则表达式提取HTML中的特定内容?"><pre><title>这是要提取的网页标题</title></pre><p>正则会提取出“这是要提取的网页标题”。</p><p>⚠️注意:如果页面中有多处<code><title></code>标签或者结构复杂,可能会出现误匹配,这时候需要结合上下文或其他方式辅助判断。</p><h2>提取指定属性的值</h2><p>有时候你需要从HTML标签中提取某个属性的值,比如所有图片的<code>src</code>:</p><pre><img.*?src="(.*?)".*?></pre><p>这样就能从下面这样的HTML中提取出图片地址:</p><pre><img src="/images/logo.png" alt="Logo"></pre><p>结果就是 <code>/images/logo.png</code></p><p>?技巧:</p><ul><li>如果不确定引号类型,可以使用<code>src=(['\"])(.*?)\1</code>来兼容单引号和双引号</li><li>注意转义字符,比如在Python中要用原始字符串<code>r''</code>避免反斜杠被转义</li></ul><h2>匹配带特定类名的标签内容</h2><p>想提取某个class下的内容?比如<code><div class="content">...</div></code>中的整个块:</p><pre><div class="content".*?>([\s\S]*?)</div></pre><p>这里用了<code>[\s\S]*?</code>来匹配包括换行在内的所有字符。</p><p>⚠️风险提示:</p><ul><li>HTML嵌套结构容易让这种正则失效,比如内部还有多个<code></div></code></li><li>更稳妥的方式是使用HTML解析器,避免“标签没闭合”、“属性顺序变化”等问题</li></ul><h2>一些实用建议</h2><ul><li>测试正则时尽量用真实的数据样本,别只看理想情况</li><li>多用非贪婪模式(<code>.*?</code>),否则很容易匹配过多内容</li><li>遇到复杂HTML结构时,优先考虑专门的解析库,而不是硬着头皮写正则</li><li>正则只是工具之一,不适用于所有HTML解析场景</li></ul><p>基本上就这些。正则提取HTML内容不复杂,但细节容易出错,多测试、多观察匹配结果才是关键。</p><p>理论要掌握,实操不能落!以上关于《如何用正则提取HTML内容》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/243736.html" title="云服务器部署Golang环境教程" class="img_box"> <img src="/uploads/20250628/1751093335685f90576151a.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="云服务器部署Golang环境教程">云服务器部署Golang环境教程 </a> <dl> <dt class="lineOverflow"><a href="/article/243736.html" title="云服务器部署Golang环境教程" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">云服务器部署Golang环境教程</dd> </dl> </div> <div class="cateItem"> <a href="/article/243738.html" title="Golang高效读取大文件方法分享" class="img_box"> <img src="/uploads/20250628/1751093456685f90d002949.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Golang高效读取大文件方法分享"> </a> <dl> <dt class="lineOverflow"><a href="/article/243738.html" class="aBlack" title="Golang高效读取大文件方法分享">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">Golang高效读取大文件方法分享</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/244004.html" class="img_box" title="Python正则入门:re模块使用全解析"> <img src="/uploads/20250628/1751105998685fc1ceb2c32.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python正则入门:re模块使用全解析"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  10分钟前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/244004.html" class="aBlack" target="_blank" title="Python正则入门:re模块使用全解析">Python正则入门:re模块使用全解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>105浏览</span> <span class="collectBtn user_collection" data-id="244004" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243997.html" class="img_box" title="Python正则忽略大小写匹配方法"> <img src="/uploads/20250628/1751105697685fc0a13b883.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python正则忽略大小写匹配方法"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  15分钟前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243997.html" class="aBlack" target="_blank" title="Python正则忽略大小写匹配方法">Python正则忽略大小写匹配方法</a> </dt> <dd class="cont2"> <span><i class="view"></i>498浏览</span> <span class="collectBtn user_collection" data-id="243997" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243994.html" class="img_box" title="Python中eval的作用是什么?"> <img src="/uploads/20250628/1751105513685fbfe9eaad2.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python中eval的作用是什么?"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  19分钟前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243994.html" class="aBlack" target="_blank" title="Python中eval的作用是什么?">Python中eval的作用是什么?</a> </dt> <dd class="cont2"> <span><i class="view"></i>345浏览</span> <span class="collectBtn user_collection" data-id="243994" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243987.html" class="img_box" title="Python并行计算怎么实现?"> <img src="/uploads/20250628/1751105094685fbe462b9fa.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python并行计算怎么实现?"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  26分钟前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243987.html" class="aBlack" target="_blank" title="Python并行计算怎么实现?">Python并行计算怎么实现?</a> </dt> <dd class="cont2"> <span><i class="view"></i>275浏览</span> <span class="collectBtn user_collection" data-id="243987" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243971.html" class="img_box" title="PyCharm区域设置位置及设置方法"> <img src="/uploads/20250628/1751104313685fbb39ade61.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="PyCharm区域设置位置及设置方法"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  39分钟前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243971.html" class="aBlack" target="_blank" title="PyCharm区域设置位置及设置方法">PyCharm区域设置位置及设置方法</a> </dt> <dd class="cont2"> <span><i class="view"></i>413浏览</span> <span class="collectBtn user_collection" data-id="243971" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243925.html" class="img_box" title="Python定时任务实现全攻略"> <img src="/uploads/20250628/1751102277685fb34590cc2.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python定时任务实现全攻略"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243925.html" class="aBlack" target="_blank" title="Python定时任务实现全攻略">Python定时任务实现全攻略</a> </dt> <dd class="cont2"> <span><i class="view"></i>190浏览</span> <span class="collectBtn user_collection" data-id="243925" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243922.html" class="img_box" title="正则表达式预定义字符类详解"> <img src="/uploads/20250628/1751102127685fb2af1109d.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="正则表达式预定义字符类详解"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243922.html" class="aBlack" target="_blank" title="正则表达式预定义字符类详解">正则表达式预定义字符类详解</a> </dt> <dd class="cont2"> <span><i class="view"></i>418浏览</span> <span class="collectBtn user_collection" data-id="243922" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243909.html" class="img_box" title="PythonPygame高级功能详解"> <img src="/uploads/20250628/1751101554685fb072bfe76.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="PythonPygame高级功能详解"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243909.html" class="aBlack" target="_blank" title="PythonPygame高级功能详解">PythonPygame高级功能详解</a> </dt> <dd class="cont2"> <span><i class="view"></i>323浏览</span> <span class="collectBtn user_collection" data-id="243909" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243907.html" class="img_box" title="Python正则匹配Unicode字符全攻略"> <img src="/uploads/20250628/1751101433685faff9331cb.png" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python正则匹配Unicode字符全攻略"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243907.html" class="aBlack" target="_blank" title="Python正则匹配Unicode字符全攻略">Python正则匹配Unicode字符全攻略</a> </dt> <dd class="cont2"> <span><i class="view"></i>218浏览</span> <span class="collectBtn user_collection" data-id="243907" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243865.html" class="img_box" title="Python高效计算技巧全解析"> <img src="/uploads/20250628/1751099574685fa8b65794e.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python高效计算技巧全解析"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  1小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243865.html" class="aBlack" target="_blank" title="Python高效计算技巧全解析">Python高效计算技巧全解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>277浏览</span> <span class="collectBtn user_collection" data-id="243865" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243856.html" class="img_box" title="Python性能优化:实用技巧提升代码效率"> <img src="/uploads/20250628/1751099214685fa74e1789f.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python性能优化:实用技巧提升代码效率"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243856.html" class="aBlack" target="_blank" title="Python性能优化:实用技巧提升代码效率">Python性能优化:实用技巧提升代码效率</a> </dt> <dd class="cont2"> <span><i class="view"></i>157浏览</span> <span class="collectBtn user_collection" data-id="243856" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/243823.html" class="img_box" title="Python类与对象入门:面向对象核心解析"> <img src="/uploads/20250628/1751097597685fa0fdbc210.jpg" onerror="this.src='/assets/images/moren/morentu.png'" alt="Python类与对象入门:面向对象核心解析"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/86_new_0_1.html" class="aLightGray" title="python教程">python教程</a>   |  2小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/243823.html" class="aBlack" target="_blank" title="Python类与对象入门:面向对象核心解析">Python类与对象入门:面向对象核心解析</a> </dt> <dd class="cont2"> <span><i class="view"></i>216浏览</span> <span class="collectBtn user_collection" data-id="243823" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">542次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">508次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">497次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">484次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13013.html" target="_blank" title="茅茅虫AIGC检测:精准识别AI生成内容,保障学术诚信" class="img_box"> <img src="/uploads/20250615/1749942634684e016a05088.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="茅茅虫AIGC检测:精准识别AI生成内容,保障学术诚信" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13013.html" class="aBlack" target="_blank" title="茅茅虫AIGC检测">茅茅虫AIGC检测</a></dt> <dd class="cont1 lineTwoOverflow"> 茅茅虫AIGC检测,湖南茅茅虫科技有限公司倾力打造,运用NLP技术精准识别AI生成文本,提供论文、专著等学术文本的AIGC检测服务。支持多种格式,生成可视化报告,保障您的学术诚信和内容质量。 </dd> <dd class="cont2">141次使用</dd> </dl> </li> <li> <a href="/ai/13012.html" target="_blank" title="赛林匹克平台:科技赛事聚合,赋能AI、算力、量子计算创新" class="img_box"> <img src="/uploads/20250608/1749370801684547b1cedf0.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="赛林匹克平台:科技赛事聚合,赋能AI、算力、量子计算创新" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13012.html" class="aBlack" target="_blank" title="赛林匹克平台(Challympics)">赛林匹克平台(Challympics)</a></dt> <dd class="cont1 lineTwoOverflow"> 探索赛林匹克平台Challympics,一个聚焦人工智能、算力算法、量子计算等前沿技术的赛事聚合平台。连接产学研用,助力科技创新与产业升级。 </dd> <dd class="cont2">167次使用</dd> </dl> </li> <li> <a href="/ai/13011.html" target="_blank" title="SEO 笔格AIPPT:AI智能PPT制作,免费生成,高效演示" class="img_box"> <img src="/uploads/20250608/17493702026845455aaeaaa.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="SEO 笔格AIPPT:AI智能PPT制作,免费生成,高效演示" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13011.html" class="aBlack" target="_blank" title="笔格AIPPT">笔格AIPPT</a></dt> <dd class="cont1 lineTwoOverflow"> SEO 笔格AIPPT是135编辑器推出的AI智能PPT制作平台,依托DeepSeek大模型,实现智能大纲生成、一键PPT生成、AI文字优化、图像生成等功能。免费试用,提升PPT制作效率,适用于商务演示、教育培训等多种场景。 </dd> <dd class="cont2">157次使用</dd> </dl> </li> <li> <a href="/ai/13010.html" target="_blank" title="稿定PPT:在线AI演示设计,高效PPT制作工具" class="img_box"> <img src="/uploads/20250608/1749374402684555c23e035.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="稿定PPT:在线AI演示设计,高效PPT制作工具" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13010.html" class="aBlack" target="_blank" title="稿定PPT">稿定PPT</a></dt> <dd class="cont1 lineTwoOverflow"> 告别PPT制作难题!稿定PPT提供海量模板、AI智能生成、在线协作,助您轻松制作专业演示文稿。职场办公、教育学习、企业服务全覆盖,降本增效,释放创意! </dd> <dd class="cont2">141次使用</dd> </dl> </li> <li> <a href="/ai/13009.html" target="_blank" title="Suno苏诺中文版:AI音乐创作平台,人人都是音乐家" class="img_box"> <img src="/uploads/20250608/174937140168454a09ec362.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Suno苏诺中文版:AI音乐创作平台,人人都是音乐家" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13009.html" class="aBlack" target="_blank" title="Suno苏诺中文版">Suno苏诺中文版</a></dt> <dd class="cont1 lineTwoOverflow"> 探索Suno苏诺中文版,一款颠覆传统音乐创作的AI平台。无需专业技能,轻松创作个性化音乐。智能词曲生成、风格迁移、海量音效,释放您的音乐灵感! </dd> <dd class="cont2">165次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/80964.html" class="aBlack" title="Flask框架安装技巧:让你的开发更高效">Flask框架安装技巧:让你的开发更高效</a></dt> <dd> <span class="left">2024-01-03</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/90241.html" class="aBlack" title="Django框架中的并发处理技巧">Django框架中的并发处理技巧</a></dt> <dd> <span class="left">2024-01-22</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/88174.html" class="aBlack" title="提升Python包下载速度的方法——正确配置pip的国内源">提升Python包下载速度的方法——正确配置pip的国内源</a></dt> <dd> <span class="left">2024-01-17</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/113474.html" class="aBlack" title="Python与C++:哪个编程语言更适合初学者?">Python与C++:哪个编程语言更适合初学者?</a></dt> <dd> <span class="left">2024-03-25</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/120624.html" class="aBlack" title="品牌建设技巧">品牌建设技巧</a></dt> <dd> <span class="left">2024-04-06</span> <span class="right">501浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">苏ICP备2023003363号-1</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//www.17golang.com/article/243737.html"/> <input type="hidden" name="__token__" value="60a938f978784e812ac0f8a18da9914a" /> <div class="form-group" style="height:70px;"> <input class="form-control" id="account" type="text" name="account" value="" data-rule="required" placeholder="邮箱/用户名" autocomplete="off"> </div> <div class="form-group" style="height:70px;"> <input class="form-control" id="password" type="password" name="password" data-rule="required;password" placeholder="密码" autocomplete="off"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="other"> <a href="#" class="forgetPwd aGray" onclick="$('.loginInfo').hide();$('.passwordForget').show();" title="忘记密码">忘记密码</a> </div> <div class="loginBtn mt25"> <button type="submit">登录</button> </div> </form> </div> <div class="selfTabCont registerFormBox" style="display: none;"> <form name="form1" id="register-form" class="form-vertical form" method="POST" action="/index/user/register"> <input type="hidden" name="invite_user_id" value="0"/> <input type="hidden" name="url" value="//www.17golang.com/article/243737.html"/> <input type="hidden" name="__token__" value="60a938f978784e812ac0f8a18da9914a" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?3dc5666f6478c7bf39cd5c91e597423d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/require.js" data-main="/assets/js/require-frontend.js?v=1671101972"></script> </body> </html>