HTML 标签参考手册 - 功能排序

按功能类别排列 HTML 标签

基础

标签 描述
  定义文档类型。
定义 HTML 文档的根。
定义关于文档的信息。
</td> <td>定义文档的标题。</td> </tr> <tr> <td><body></td> <td>定义文档的主体。</td> </tr> <tr> <td><h1> to <h6></td> <td>定义 HTML 标题。</td> </tr> <tr> <td><p></td> <td>定义段落。</td> </tr> <tr> <td><br></td> <td>定义简单的折行。</td> </tr> <tr> <td><hr></td> <td>定义内容的主题变化。</td> </tr> <tr> <td><!--...--></td> <td>定义注释。</td> </tr> </table> <h3>格式化</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><acronym></td> <td><span class="deprecated">HTML5 中不支持。请使用 <abbr> 代替。</span>定义首字母缩略词。</td> </tr> <tr> <td><abbr></td> <td>定义缩写词或首字母缩略词。</td> </tr> <tr> <td><address></td> <td>定义文档作者或拥有者的联系信息。</td> </tr> <tr> <td><b></td> <td>定义粗体文本。</td> </tr> <tr> <td><bdi></td> <td>定义文本的文本方向,使其脱离其周围文本的方向设置。</td> </tr> <tr> <td><bdo></td> <td>定义文字方向。</td> </tr> <tr> <td><big></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义大号文本。</td> </tr> <tr> <td><blockquote></td> <td>定义长的引用。</td> </tr> <tr> <td><center></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义居中的文本。</td> </tr> <tr> <td><cite></td> <td>定义作品的标题。</td> </tr> <tr> <td><code></td> <td>定义一段计算机代码。</td> </tr> <tr> <td><del></td> <td>定义已从文档中删除的文本。</td> </tr> <tr> <td><dfn></td> <td>规定要在内容中定义的术语。</td> </tr> <tr> <td><em></td> <td>定义强调文本。</td> </tr> <tr> <td><font></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义文字的字体、尺寸和颜色。</td> </tr> <tr> <td><i></td> <td>定义以不同的语气或情态表达的文本部分。</td> </tr> <tr> <td><ins></td> <td>定义已插入到文档中的文本。</td> </tr> <tr> <td><kbd></td> <td>定义键盘输入。</td> </tr> <tr> <td><mark></td> <td>定义应标记或突出显示的文本。</td> </tr> <tr> <td><meter></td> <td>定义已知范围内的仪表。</td> </tr> <tr> <td><pre></td> <td>定义预格式文本。</td> </tr> <tr> <td><progress></td> <td>定义任务进度。</td> </tr> <tr> <td><q></td> <td>定义短的引用。</td> </tr> <tr> <td><rp></td> <td>定义在不支持 ruby 注释的浏览器中显示的内容。</td> </tr> <tr> <td><rt></td> <td>定义字符的解释/发音(针对东亚印刷术)。</td> </tr> <tr> <td><ruby></td> <td>定义 ruby 注释(针对东亚印刷术)。</td> </tr> <tr> <td><s></td> <td>定义不再正确的文本。</td> </tr> <tr> <td><samp></td> <td>定义计算机程序的样本输出。</td> </tr> <tr> <td><small></td> <td>定义小号文本。</td> </tr> <tr> <td><strike></td> <td><span class="deprecated">HTML5 中不支持。请使用 <del> 或 <s> 代替。</span>定义加删除线文本。</td> </tr> <tr> <td><strong></td> <td>定义重要的文本。</td> </tr> <tr> <td><sup></td> <td>定义上标文本。</td> </tr> <tr> <td><sub></td> <td>定义下标文本。</td> </tr> <tr> <td><template></td> <td>定义用作容纳页面加载时隐藏内容的容器。</td> </tr> <tr> <td><time></td> <td>定义日期/时间。</td> </tr> <tr> <td><tt></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义打字机文本。</td> </tr> <tr> <td><u></td> <td>定义未明确表达且样式与普通文本不同的文本。</td> </tr> <tr> <td><var></td> <td>定义变量。</td> </tr> <tr> <td><wbr></td> <td>定义可能的换行符。</td> </tr> </table> <h3>表单和输入</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><form></td> <td>定义供用户输入的 HTML 表单。</td> </tr> <tr> <td><input></td> <td>定义输入控件。</td> </tr> <tr> <td><textarea></td> <td>定义多行的文本输入控件。</td> </tr> <tr> <td><button></td> <td>定义可点击的按钮。</td> </tr> <tr> <td><select></td> <td>定义下拉列表。</td> </tr> <tr> <td><optgroup></td> <td>定义下拉列表列表中相关选项的分组。</td> </tr> <tr> <td><option></td> <td>定义下拉列表中的选项。</td> </tr> <tr> <td><label></td> <td>定义 input 元素 的标注。</td> </tr> <tr> <td><fieldset></td> <td>对表单中的相关元素进行分组。</td> </tr> <tr> <td><legend></td> <td>定义 fieldset 元素 的标题。</td> </tr> <tr> <td><datalist></td> <td>规定输入控件的预定义选项列表。</td> </tr> <tr> <td><output></td> <td>定义计算的结果。</td> </tr> </table> <h3>框架</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><frame></td> <td><span class="deprecated">HTML5 中不支持。</span>定义框架集的窗口或框架。</td> </tr> <tr> <td><frameset></td> <td><span class="deprecated">HTML5 中不支持。</span>定义框架集。</td> </tr> <tr> <td><noframes></td> <td><span class="deprecated">HTML5 中不支持。</span>定义针对不支持框架的用户的替代内容。</td> </tr> <tr> <td><iframe></td> <td>定义内联框架。</td> </tr> </table> <h3>图像</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><img></td> <td>定义图像。</td> </tr> <tr> <td><map></td> <td>定义图像映射。</td> </tr> <tr> <td><area></td> <td>定义图像地图内部的区域。</td> </tr> <tr> <td><canvas></td> <td>用于通过脚本(通常是 JavaScript)动态绘制图形。</td> </tr> <tr> <td><figcaption></td> <td>定义 figure 元素 的标题。</td> </tr> <tr> <td><figure></td> <td>规定自包含的内容。</td> </tr> <tr> <td><picture></td> <td>定义多个图像资源的容器。</td> </tr> <tr> <td><svg></td> <td>定义 SVG 图形的容器。</td> </tr> </table> <h3>音频/视频</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><audio></td> <td>定义嵌入的声音内容。</td> </tr> <tr> <td><source></td> <td>定义媒体元素(如 <video>、<audio> 和 <picture>)的多个媒体资源。</td> </tr> <tr> <td><track></td> <td>定义用在媒体播放器中的文本轨道。</td> </tr> <tr> <td><video></td> <td>定义嵌入的视频内容。</td> </tr> </table> <h3>链接</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><a></td> <td>定义超链接。</td> </tr> <tr> <td><link></td> <td>定义文档与外部资源的关系(最常用于链接样式表)。</td> </tr> <tr> <td><nav></td> <td>定义导航链接。</td> </tr> </table> <h3>列表</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><menu></td> <td>定义无序列表。</td> </tr> <tr> <td><ul></td> <td>定义无序列表。</td> </tr> <tr> <td><ol></td> <td>定义有序列表。</td> </tr> <tr> <td><li></td> <td>定义列表的项目。</td> </tr> <tr> <td><dir></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义目录列表。</td> </tr> <tr> <td><dl></td> <td>定义描述列表。</td> </tr> <tr> <td><dt></td> <td>定义描述列表中的术语/名称。</td> </tr> <tr> <td><dd></td> <td>定义描述列表中术语的描述/值。</td> </tr> </table> <h3>表格</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><table></td> <td>定义表格</td> </tr> <tr> <td><caption></td> <td>定义表格标题。</td> </tr> <tr> <td><th></td> <td>定义表格中的表头单元格。</td> </tr> <tr> <td><tr></td> <td>定义表格中的行。</td> </tr> <tr> <td><td></td> <td>定义表格中的单元。</td> </tr> <tr> <td><thead></td> <td>定义表格中的表头内容。</td> </tr> <tr> <td><tbody></td> <td>定义表格中的主体内容。</td> </tr> <tr> <td><tfoot></td> <td>定义表格中的表注内容(脚注)。</td> </tr> <tr> <td><col></td> <td>规定 <colgroup> 元素 中每列的列属性。</td> </tr> <tr> <td><colgroup></td> <td>规定表格中供格式化的列组。</td> </tr> </table> <h3>样式和语义</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><style></td> <td>定义文档的样式信息。</td> </tr> <tr> <td><div></td> <td>定义文档中的节(片段)。</td> </tr> <tr> <td><span></td> <td>定义文本的一部分,或文档的一部分。</td> </tr> <tr> <td><header></td> <td>定义文档或小节的页眉。</td> </tr> <tr> <td><hgroup></td> <td>定义标题和相关内容。</td> </tr> <tr> <td><footer></td> <td>定义文档或小节的页脚。</td> </tr> <tr> <td><main></td> <td>定义文档的主要内容。</td> </tr> <tr> <td><section></td> <td>定义文档中的一个部分。</td> </tr> <tr> <td><search></td> <td>定义搜索部分。</td> </tr> <tr> <td><article></td> <td>定义文章。</td> </tr> <tr> <td><aside></td> <td>定义页面内容之外的内容。</td> </tr> <tr> <td><details></td> <td>定义用户可查看或隐藏的其他详细信息。</td> </tr> <tr> <td><dialog></td> <td>定义对话框或窗口。</td> </tr> <tr> <td><summary></td> <td>定义 <details> 元素的可见标题。</td> </tr> <tr> <td><data></td> <td>添加给定内容的机器可读的翻译。</td> </tr> </table> <h3>元信息</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><head></td> <td>包含文档的元数据/信息。</td> </tr> <tr> <td><meta></td> <td>定义关于 HTML 文档的元数据。</td> </tr> <tr> <td><base></td> <td>规定文档中所有相对 URL 的基准 URL 和/或目标。</td> </tr> <tr> <td><basefont></td> <td><span class="deprecated">HTML5 中不支持。请使用 CSS 代替。</span>定义文档中文本的默认字体、颜色或尺寸。</td> </tr> </table> <h3>编程</h3> <table class="dataintable"> <tr> <th style="width:30%">标签</th> <th style="width:70%">描述</th> </tr> <tr> <td><script></td> <td>定义客户端脚本。</td> </tr> <tr> <td><noscript></td> <td>定义针对不支持客户端脚本的用户的替代内容。</td> </tr> <tr> <td><applet></td> <td><span class="deprecated">HTML5 中不支持。请使用 <embed> 和 <object> 代替。</span>定义嵌入式小程序。</td> </tr> <tr> <td><embed></td> <td>定义外部资源的容器。</td> </tr> <tr> <td><object></td> <td>定义外部资源的容器。</td> </tr> <tr> <td><param></td> <td>定义对象的参数。</td> </tr> </table> </div> </div> <div class="desadown flexRow"> <a href="/html/html-html-summary.html" title="你已经将 HTML 教程学习完毕,下一步该学习什么呢?" class="dsdleft flexRow dsda"> <img src="/static/lhimages/icon226.png" class="nocheck"> <img src="/static/lhimages/icon226_check.png" class="check"> <p>你已经将 HTML 教程学习完毕,下一步该学习什么呢?</p> </a> <a href="/html/html-html-ref-html-browsersupport.html" title="HTML 参考手册 - 浏览器支持" class="dsdright flexRow dsda"><p>HTML 参考手册 - 浏览器支持</p> <img src="/static/lhimages/icon227.png" class="nocheck"> <img src="/static/lhimages/icon227_check.png" class="check"> </a> </div> </div> <div class="left-video"> <div class="ltzt-title lttitle flexRow"> <div class="title-left flexRow"> <p><span>相关</span><b></b></p> <p>视频</p> <p class="eng">RELATED VIDEOS</p> </div> <a class="title-more flexRow" href="/course/sort_new.html" title="视频教程"><b></b>更多 </a> </div> <div class="video-list flexRow codevideo"> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/901.html" title="Web前端开发极速入门"> <img src="https://img.php.cn/upload/course/000/000/067/64be28a53a4f6310.png?x-oss-process=image/resize,m_fill,h_150,w_263" alt="Web前端开发极速入门" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/901.html" title="Web前端开发极速入门" class="aBlack aClass">Web前端开发极速入门</a> </dt> <dd class="flexRow studyandcoll"> <p>219920次学习</p><em><a class="courseICollection " data-id="901" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/880.html" title="前端入门_HTML5"> <img src="https://img.php.cn/upload/course/000/000/068/6255589398c2c999.png?x-oss-process=image/resize,m_fill,h_150,w_263" alt="前端入门_HTML5" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/880.html" title="前端入门_HTML5" class="aBlack aClass">前端入门_HTML5</a> </dt> <dd class="flexRow studyandcoll"> <p>616946次学习</p><em><a class="courseICollection " data-id="880" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/874.html" title="30分钟学会网站布局"> <img src="https://img.php.cn/upload/course/000/000/041/61b8365849424887.jpg?x-oss-process=image/resize,m_fill,h_150,w_263" alt="30分钟学会网站布局" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/874.html" title="30分钟学会网站布局" class="aBlack aClass">30分钟学会网站布局</a> </dt> <dd class="flexRow studyandcoll"> <p>238440次学习</p><em><a class="courseICollection " data-id="874" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/893.html" title="CSS视频教程-玉女心经版"> <img src="https://img.php.cn/upload/course/000/000/068/625558b87e512730.png?x-oss-process=image/resize,m_fill,h_150,w_263" alt="CSS视频教程-玉女心经版" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/893.html" title="CSS视频教程-玉女心经版" class="aBlack aClass">CSS视频教程-玉女心经版</a> </dt> <dd class="flexRow studyandcoll"> <p>393054次学习</p><em><a class="courseICollection " data-id="893" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/894.html" title="JavaScript极速入门_玉女心经系列"> <img src="https://img.php.cn/upload/course/000/000/068/625558e4f11c8518.png?x-oss-process=image/resize,m_fill,h_150,w_263" alt="JavaScript极速入门_玉女心经系列" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/894.html" title="JavaScript极速入门_玉女心经系列" class="aBlack aClass">JavaScript极速入门_玉女心经系列</a> </dt> <dd class="flexRow studyandcoll"> <p>709168次学习</p><em><a class="courseICollection " data-id="894" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/372.html" title="独孤九贱(1)_HTML5视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6ddbecdb1707.jpg?x-oss-process=image/resize,m_fill,h_150,w_263" alt="独孤九贱(1)_HTML5视频教程" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/372.html" title="独孤九贱(1)_HTML5视频教程" class="aBlack aClass">独孤九贱(1)_HTML5视频教程</a> </dt> <dd class="flexRow studyandcoll"> <p>615934次学习</p><em><a class="courseICollection " data-id="372" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/582.html" title="独孤九贱(6)_jQuery视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6e0d2b744633.jpg?x-oss-process=image/resize,m_fill,h_150,w_263" alt="独孤九贱(6)_jQuery视频教程" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg2'>中级</i> <a href="/course/582.html" title="独孤九贱(6)_jQuery视频教程" class="aBlack aClass">独孤九贱(6)_jQuery视频教程</a> </dt> <dd class="flexRow studyandcoll"> <p>341081次学习</p><em><a class="courseICollection " data-id="582" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/585.html" title="独孤九贱(7)_Bootstrap视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6e1577037989.jpg?x-oss-process=image/resize,m_fill,h_150,w_263" alt="独孤九贱(7)_Bootstrap视频教程" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg2'>中级</i> <a href="/course/585.html" title="独孤九贱(7)_Bootstrap视频教程" class="aBlack aClass">独孤九贱(7)_Bootstrap视频教程</a> </dt> <dd class="flexRow studyandcoll"> <p>270827次学习</p><em><a class="courseICollection " data-id="585" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> <div class="codevideo-tab flexColumn"> <div class="vtaba-free"> <p>免费</p> </div> <a class="codevtaba flexRow" href="/course/373.html" title="独孤九贱(2)_CSS视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6de7424b9255.jpg?x-oss-process=image/resize,m_fill,h_150,w_263" alt="独孤九贱(2)_CSS视频教程" class="codevtabimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="codevtdown flexColumn"> <div> <dt><i class='bg1'>初级</i> <a href="/course/373.html" title="独孤九贱(2)_CSS视频教程" class="aBlack aClass">独孤九贱(2)_CSS视频教程</a> </dt> <dd class="flexRow studyandcoll"> <p>229605次学习</p><em><a class="courseICollection " data-id="373" href="javascript:void(0);"><b></b>收藏</a></em> </dd> </div> </div> </div> </div> </div> </div> </div> <div class="conRight"> <div class="technology-news rightDiv"> <div class="rightdTitle flexRow"> <div class="title-left flexRow"> <b></b> <p>科技资讯</p> </div> <a class="rititle-more flexRow" href="/it" title="科技资讯">更多</a> </div> <ul class="tecnewul"> <li class="tecnelli flexRow"> <a href="/faq/1693715.html" title="小米通话今年 12 月 3 日停止服务,用户数据将全部清除" class="tecna"> <img src="https://img.php.cn/upload/article/000/000/075/690c0c7734015647.png?x-oss-process=image/resize,m_fill,h_88,w_162" alt="小米通话今年 12 月 3 日停止服务,用户数据将全部清除" class="tecnAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="tecnRight flexColumn"> <a href="/faq/1693715.html" title="小米通话今年 12 月 3 日停止服务,用户数据将全部清除" class="tecnda overflowclass">小米通话今年 12 月 3 日停止服务,用户数据将全部清除</a> <a class="tecnp overflowclass" href="/faq/1693715.html" title="小米通话今年 12 月 3 日停止服务,用户数据将全部清除">小米通话将于2025年12月3日正式停服,11月15日起下架并关闭注册,用户需提前备份数据,官方将清除所有账号信息以保障隐私,曾支持多设备无缝切换的高清通话功能将成回忆。</a> </div> </li> <li class="tecnelli flexRow"> <a href="/faq/1693686.html" title="比“胖五”更能扛!我国新一代载人运载火箭要来了" class="tecna"> <img src="https://img.php.cn/upload/article/000/000/075/690c0af50610d947.png?x-oss-process=image/resize,m_fill,h_88,w_162" alt="比“胖五”更能扛!我国新一代载人运载火箭要来了" class="tecnAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="tecnRight flexColumn"> <a href="/faq/1693686.html" title="比“胖五”更能扛!我国新一代载人运载火箭要来了" class="tecnda overflowclass">比“胖五”更能扛!我国新一代载人运载火箭要来了</a> <a class="tecnp overflowclass" href="/faq/1693686.html" title="比“胖五”更能扛!我国新一代载人运载火箭要来了">新一代载人火箭全长约90米,起飞重量2000吨,可将25吨载荷送入奔月轨道,70吨送入近地轨道,运力达“胖五”3倍;继承长征二号F安全标准,集成长征五号、七号成熟技术,采用新型发动机、高安全逃逸系统和轻质材料;未来将执行环月、绕月及登月任务,助力月球基地建设和资源开发,大幅拓展中国航天深空探测能力。</a> </div> </li> <li class="tecnelli flexRow"> <a href="/faq/1692308.html" title="OpenAI 曾在解雇奥特曼后讨论与 Anthropic 合并" class="tecna"> <img src="https://img.php.cn/upload/article/001/246/273/176235036538256.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="OpenAI 曾在解雇奥特曼后讨论与 Anthropic 合并" class="tecnAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="tecnRight flexColumn"> <a href="/faq/1692308.html" title="OpenAI 曾在解雇奥特曼后讨论与 Anthropic 合并" class="tecnda overflowclass">OpenAI 曾在解雇奥特曼后讨论与 Anthropic 合并</a> <a class="tecnp overflowclass" href="/faq/1692308.html" title="OpenAI 曾在解雇奥特曼后讨论与 Anthropic 合并">随着马斯克对OpenAI掌门人山姆·奥特曼(SamAltman)提起的诉讼不断深入,一场震动全球科技圈的高层权力博弈正逐渐浮出水面。根据最新披露的法庭文件,在大约两年前奥特曼短暂被解除CEO职务后不久,OpenAI曾与人工智能领域竞争对手Anthropic展开过关于合并的初步探讨。这一信息成为当前马斯克诉奥特曼及OpenAI、围绕公司治理与重组争议的重要一环。在最近提交的一份证词中,OpenAI联合创始人兼前首席科学家伊利亚·苏茨克沃(IlyaSutskever)详细披露了这段鲜为人知的谈判内幕</a> </div> </li> </ul> </div> <div class="readCharts"> <div class="readDown flexColumn"> <div class="rightdTitle flexRow"> <div class="title-left flexRow"> <b></b><b></b></div> <a class="rititle-more flexRow" href="/article.html" target="_blank" title="更多">更多</a> </div> <ul class="rcUl"> <li class="rcLi flexRow"> <div class="rclileft"> <p>1</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694079.html" class=" aClass readA overflowclass" title="利用JavaScript获取HTML元素的CSS颜色值">利用JavaScript获取HTML元素的CSS颜色值</a> <a href="/faq/1694079.html" class=" aClass overflowclass" title="利用JavaScript获取HTML元素的CSS颜色值">本教程详细讲解如何使用JavaScript获取HTML元素的CSS颜色属性。文章涵盖了通过element.style直接访问内联样式,以及使用getComputedStyle获取所有计算样式的方法。同时,介绍了如何通过ID、类名或标签名精确选取目标元素,并提供了实用的代码示例和注意事项,帮助开发者准确有效地获取页面元素的颜色信息。</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>2</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694078.html" class=" aClass readA overflowclass" title="HTML拖放API:实现文件/文件夹名称获取,无需实际上传">HTML拖放API:实现文件/文件夹名称获取,无需实际上传</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>3</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694075.html" class=" aClass readA overflowclass" title="PHP模板怎么组件复用_PHP模板组件复用方法及模块化开发。">PHP模板怎么组件复用_PHP模板组件复用方法及模块化开发。</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>4</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694077.html" class=" aClass readA overflowclass" title="HTML5拖放技巧:消除拖拽元素背景色残留">HTML5拖放技巧:消除拖拽元素背景色残留</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>5</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694072.html" class=" aClass readA overflowclass" title="在 cPanel 应用管理器中通过 PHP 访问环境变量的实用指南">在 cPanel 应用管理器中通过 PHP 访问环境变量的实用指南</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>6</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694070.html" class=" aClass readA overflowclass" title="怎么查看mysql的安装路径">怎么查看mysql的安装路径</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>7</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694071.html" class=" aClass readA overflowclass" title="Go语言中Goroutine的Defer行为与并发同步机制详解">Go语言中Goroutine的Defer行为与并发同步机制详解</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>8</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694068.html" class=" aClass readA overflowclass" title="使用PHP和MySQL高效查询最频繁数据项的教程">使用PHP和MySQL高效查询最频繁数据项的教程</a> </div> </li> <li class="rcLi flexRow"> <div class="rclileft"> <p>9</p> </div> <div class="flexColumn rcreadDiv"> <a href="/faq/1694067.html" class=" aClass readA overflowclass" title="JavaScript中实现元素多功能交互的最佳实践:规避单双击事件冲突">JavaScript中实现元素多功能交互的最佳实践:规避单双击事件冲突</a> </div> </li> </ul> </div> </div> <div class="adversitement"> <script type="text/javascript" src="https://teacher.php.cn/php/MDM3MTk1MGYxYjI5ODJmNTE0ZWVkZTA3NmJhYzhmMjI6Og=="></script> </div> <div class=" rightStudy rightDiv"> <div class="rightdTitle flexRow"> <div class="title-left flexRow"> <b></b> <p> 精选课程</p> </div> <a class="rititle-more flexRow" href="/course/sort_new.html" title="精选课程">更多</a> </div> <div class="ristyList flexColumn"> <div class="ristyA flexRow "> <a href="/course/797.html" title="PHP实战天龙八部之微信支付视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d242759adb88970.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="PHP实战天龙八部之微信支付视频教程" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/797.html" title="PHP实战天龙八部之微信支付视频教程" class="rirightp overflowclass">PHP实战天龙八部之微信支付视频教程</a> <div class="risrdown flexRow"> <p>共5课时</p><b></b> <p>17.2万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/801.html" title="PHP实战天龙八部之仿爱奇艺电影网站"> <img src="https://img.php.cn/upload/course/000/000/001/5d2426f409839992.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="PHP实战天龙八部之仿爱奇艺电影网站" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/801.html" title="PHP实战天龙八部之仿爱奇艺电影网站" class="rirightp overflowclass">PHP实战天龙八部之仿爱奇艺电影网站</a> <div class="risrdown flexRow"> <p>共49课时</p><b></b> <p>77万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/880.html" title="前端入门_HTML5"> <img src="https://img.php.cn/upload/course/000/000/068/6255589398c2c999.png?x-oss-process=image/resize,m_fill,h_88,w_162" alt="前端入门_HTML5" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/880.html" title="前端入门_HTML5" class="rirightp overflowclass">前端入门_HTML5</a> <div class="risrdown flexRow"> <p>共29课时</p><b></b> <p>61.7万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/893.html" title="CSS视频教程-玉女心经版"> <img src="https://img.php.cn/upload/course/000/000/068/625558b87e512730.png?x-oss-process=image/resize,m_fill,h_88,w_162" alt="CSS视频教程-玉女心经版" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/893.html" title="CSS视频教程-玉女心经版" class="rirightp overflowclass">CSS视频教程-玉女心经版</a> <div class="risrdown flexRow"> <p>共25课时</p><b></b> <p>39.3万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/894.html" title="JavaScript极速入门_玉女心经系列"> <img src="https://img.php.cn/upload/course/000/000/068/625558e4f11c8518.png?x-oss-process=image/resize,m_fill,h_88,w_162" alt="JavaScript极速入门_玉女心经系列" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/894.html" title="JavaScript极速入门_玉女心经系列" class="rirightp overflowclass">JavaScript极速入门_玉女心经系列</a> <div class="risrdown flexRow"> <p>共43课时</p><b></b> <p>70.9万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/372.html" title="独孤九贱(1)_HTML5视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6ddbecdb1707.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="独孤九贱(1)_HTML5视频教程" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/372.html" title="独孤九贱(1)_HTML5视频教程" class="rirightp overflowclass">独孤九贱(1)_HTML5视频教程</a> <div class="risrdown flexRow"> <p>共25课时</p><b></b> <p>61.6万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/373.html" title="独孤九贱(2)_CSS视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6de7424b9255.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="独孤九贱(2)_CSS视频教程" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/373.html" title="独孤九贱(2)_CSS视频教程" class="rirightp overflowclass">独孤九贱(2)_CSS视频教程</a> <div class="risrdown flexRow"> <p>共22课时</p><b></b> <p>23万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/386.html" title="独孤九贱(3)_JavaScript视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6df423564706.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="独孤九贱(3)_JavaScript视频教程" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/386.html" title="独孤九贱(3)_JavaScript视频教程" class="rirightp overflowclass">独孤九贱(3)_JavaScript视频教程</a> <div class="risrdown flexRow"> <p>共28课时</p><b></b> <p>33.9万人学习</p> </div> </div> </div> <div class="ristyA flexRow "> <a href="/course/379.html" title="独孤九贱(4)_PHP视频教程"> <img src="https://img.php.cn/upload/course/000/000/001/5d1c6dfc9eb09885.jpg?x-oss-process=image/resize,m_fill,h_88,w_162" alt="独孤九贱(4)_PHP视频教程" class="ristyAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ristyaRight flexColumn"> <a href="/course/379.html" title="独孤九贱(4)_PHP视频教程" class="rirightp overflowclass">独孤九贱(4)_PHP视频教程</a> <div class="risrdown flexRow"> <p>共89课时</p><b></b> <p>125万人学习</p> </div> </div> </div> </div> </div> <div class=" rightDowns rightDiv"> <div class="rightdTitle flexRow"> <div class="title-left flexRow"> <b></b> <p> 热门下载</p> </div> <a class="rititle-more flexRow" href="/xiazai/" title="热门下载">更多</a> </div> <div class="rids"> <div href="/xiazai/gongju/845" title="phpStudy 2018最新版" class="ridsA flexRow " > <a href="/xiazai/gongju/845" title="phpStudy 2018最新版"> <img src="https://img.php.cn/upload/manual/000/000/001/5a5f0fb612676526.jpg?x-oss-process=image/resize,m_fill,h_60,w_101" alt="phpStudy 2018最新版" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/845" title="phpStudy 2018最新版" class="ridsrp overflowclass">phpStudy 2018最新版</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/845" title="phpStudy 2018最新版"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/1351" title="vc9-vc14(32+64位)运行库合集(链接在下方)" class="ridsA flexRow " > <a href="/xiazai/gongju/1351" title="vc9-vc14(32+64位)运行库合集(链接在下方)"> <img src="https://img.php.cn/upload/manual/000/000/001/5a6a896b53dea437.png?x-oss-process=image/resize,m_fill,h_60,w_101" alt="vc9-vc14(32+64位)运行库合集(链接在下方)" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/1351" title="vc9-vc14(32+64位)运行库合集(链接在下方)" class="ridsrp overflowclass">vc9-vc14(32+64位)运行库合集(链接在下方)</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/1351" title="vc9-vc14(32+64位)运行库合集(链接在下方)"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/1479" title="VC9 32位" class="ridsA flexRow " > <a href="/xiazai/gongju/1479" title="VC9 32位"> <img src="https://img.php.cn/upload/manual/000/000/001/5af2c4207a616756.jpg?x-oss-process=image/resize,m_fill,h_60,w_101" alt="VC9 32位" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/1479" title="VC9 32位" class="ridsrp overflowclass">VC9 32位</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/1479" title="VC9 32位"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/1481" title="VC11 32位" class="ridsA flexRow " > <a href="/xiazai/gongju/1481" title="VC11 32位"> <img src="https://img.php.cn/upload/manual/000/000/001/5af2c4684dbe4408.jpg?x-oss-process=image/resize,m_fill,h_60,w_101" alt="VC11 32位" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/1481" title="VC11 32位" class="ridsrp overflowclass">VC11 32位</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/1481" title="VC11 32位"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/714" title="php程序员工具箱完整版" class="ridsA flexRow " > <a href="/xiazai/gongju/714" title="php程序员工具箱完整版"> <img src="https://img.php.cn/upload/manual/000/000/001/5a718c0e5be0a511.jpg?x-oss-process=image/resize,m_fill,h_60,w_101" alt="php程序员工具箱完整版" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/714" title="php程序员工具箱完整版" class="ridsrp overflowclass">php程序员工具箱完整版</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/714" title="php程序员工具箱完整版"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/1484" title="VC14 32位" class="ridsA flexRow " > <a href="/xiazai/gongju/1484" title="VC14 32位"> <img src="https://img.php.cn/upload/manual/000/000/001/5af2c54fc1f91550.jpg?x-oss-process=image/resize,m_fill,h_60,w_101" alt="VC14 32位" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/1484" title="VC14 32位" class="ridsrp overflowclass">VC14 32位</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/1484" title="VC14 32位"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/93" title="SublimeText3汉化版" class="ridsA flexRow " > <a href="/xiazai/gongju/93" title="SublimeText3汉化版"> <img src="https://img.php.cn/upload/manual/000/000/001/58a1753774be3478.png?x-oss-process=image/resize,m_fill,h_60,w_101" alt="SublimeText3汉化版" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/93" title="SublimeText3汉化版" class="ridsrp overflowclass">SublimeText3汉化版</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/93" title="SublimeText3汉化版"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/92" title="Notepad++7.3.1" class="ridsA flexRow " > <a href="/xiazai/gongju/92" title="Notepad++7.3.1"> <img src="https://img.php.cn/upload/manual/000/000/001/58a1713812af3871.png?x-oss-process=image/resize,m_fill,h_60,w_101" alt="Notepad++7.3.1" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/92" title="Notepad++7.3.1" class="ridsrp overflowclass">Notepad++7.3.1</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/92" title="Notepad++7.3.1"> <p>下载</p> </a> </div> </div> <div href="/xiazai/gongju/1500" title="phpStudy V8.1(Win64位)(已支持php8)" class="ridsA flexRow " > <a href="/xiazai/gongju/1500" title="phpStudy V8.1(Win64位)(已支持php8)"> <img src="https://img.php.cn/upload/manual/000/000/001/5eb23582ba149960.png?x-oss-process=image/resize,m_fill,h_60,w_101" alt="phpStudy V8.1(Win64位)(已支持php8)" class="ridsAimg" onerror="this.src='/static/lhimages/moren/morentu.png'"> </a> <div class="ridsaRight flexColumn"> <a href="/xiazai/gongju/1500" title="phpStudy V8.1(Win64位)(已支持php8)" class="ridsrp overflowclass">phpStudy V8.1(Win64位)(已支持php8)</a> <a class="ridsrdown flexRow" href="/xiazai/gongju/1500" title="phpStudy V8.1(Win64位)(已支持php8)"> <p>下载</p> </a> </div> </div> </div> </div> </div> </div> </div> <!--底部--> <div class="phpFoot"> <div class="phpFootIn"> <div class="phpFootCont"> <div class="phpFootLeft"> <dl> <dt> <a href="/about/us.html" rel="nofollow" target="_blank" title="关于我们" class="cBlack">关于我们</a> <a href="/about/disclaimer.html" rel="nofollow" target="_blank" title="免责申明" class="cBlack">免责申明</a> <a href="javascript:;" rel="nofollow" onclick="advice_data(99999999,'意见反馈')" title="意见反馈" class="cBlack">意见反馈</a> <a href="https://www.php.cn/teacher.html" rel="nofollow" target="_blank" title="讲师合作" class="cBlack">讲师合作</a> <a href="https://www.php.cn/blog/detail/20304.html" rel="nofollow" target="_blank" title="广告合作" class="cBlack">广告合作</a> <!--<a href="javascript:;" target="_blank" title="其他合作" class="cBlack">其他合作</a>--> <a href="/new/" target="_blank" title="最新文章列表" class="cBlack">最新更新</a> <a href="https://global.php.cn/" target="_blank" title="English" class="cBlack">English</a> <div class="clear"></div> </dt> <dd class="cont1">php中文网:公益在线php培训,帮助PHP学习者快速成长!</dd> <dd class="cont2"> <span class="ylwTopBox"> <a href="javascript:;" class="cBlack"><b class="icon1"></b>关注服务号</a> <em style="display:none;" class="ylwTopSub"> <p>微信扫码<br/>关注PHP中文网服务号</p> <img src="/static/images/examples/text16.png"/> </em> </span> <span class="ylwTopBox"> <a href="tencent://message/?uin=27220243&Site=www.php.cn&Menu=yes" target="_blank" class="cBlack"><b class="icon2"></b>技术交流群</a> <em style="display:none;" class="ylwTopSub"> <p>QQ扫码<br/>加入技术交流群</p> <img src="/static/images/examples/text18.png"/> </em> </span> <div class="clear"></div> </dd> </dl> </div> <div class="phpFootRight"> <div class="phpFootMsg"> <span><img src="/static/images/examples/text17.png"/></span> <dl> <dt>PHP中文网订阅号</dt> <dd>每天精选资源文章推送</dd> </dl> </div> <div class="phpFootMsg"> <span><img src="/static/images/examples/text14.png"/></span> <dl> <dt>PHP中文网APP</dt> <dd>随时随地碎片化学习</dd> </dl> </div> </div> </div> </div> <div class="phpFootCode"> <div class="phpFootCodeIn"><p>Copyright 2014-2025 <a href="https://www.php.cn/" target="_blank">https://www.php.cn/</a> All Rights Reserved | php.cn | <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">湘ICP备2023035733号</a></p><a href="http://www.beian.gov.cn/portal/index.do" rel="nofollow" target="_blank"><b></b></a></div> </div> </div> <input type="hidden" id="verifycode" value="/captcha.html"> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?c0e685c8743351838d2a7db1c49abd56"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script> <span class="layui-hide"><script type="text/javascript" src="https://s4.cnzz.com/z_stat.php?id=1280886301&web_id=1280886301"></script></span> <script src="/static/js/cdn.js?v=1.0.1"></script> <!--底部 end--> <script type="text/javascript" src="/static/js/global.min.js?5.5.53"></script> <script src="/static/ueditor/third-party/SyntaxHighlighter/shCore.js"></script> <script src="/static/js/CodeRunOnline.js?3.1"></script> <script>var _hmt = _hmt || [];(function(){var hm = document.createElement("script");hm.src="//hm.baidu.com/hm.js?aaf8dba0861f46190106021371583c62";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();(function(){var bp = document.createElement('script');var curProtocol = window.location.protocol.split(':')[0];if(curProtocol === 'https'){bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';}else{bp.src = 'http://push.zhanzhang.baidu.com/push.js';};var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(bp, s);})();</script> </body> <script> function copyCurrentUrl() { const url = window.location.href; const input = document.createElement('input'); input.value = url; document.body.appendChild(input); input.select(); document.execCommand('copy'); document.body.removeChild(input); alert('✅ 已复制当前链接:' + url); } </script> </html>