ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    JS 打开新窗口页面

    Sep 1, 20224 min read
    const  subscribeMore = () => {
        const w = window.open("about:blank");
        w.location.href = "https://preview.mdnice.com/themes";
    };
    

    相关文章

    Building a Scalable Article View Counter with Hono and Supabase

    This blog post guides you through creating a scalable article view counter using the Hono web framework and Supabase as the backend service, ensuring data integrity and automatic article creation.

    Shell 脚本中获取本机 ip 地址方法

    该Shell脚本通过`ifconfig -a`命令获取本机IP地址信息,过滤掉本地回环地址和IPv6地址,提取并删除"addr:"字符串后的IP地址。

    如何使用JavaScript动态修改网页标题名称?

    使用JavaScript的`document.title`属性可以动态修改网页标题名称。

    卢比奥 的生平

    马可·安东尼奥·卢比奥,生于1971年,是一位古巴移民后裔的美国共和党籍政治家、律师和参议员,曾任佛罗里达州众议院议长,并在参议员职务上推动多项保守政策和国际倡议。

    le-markdown 配置md拖拽上传图片

    定义了一个自定义的图片上传接口,配置了axios上传选项,并实现了图片上传功能,包括设置文件类型、文件名类型、图片前缀,以及使用FormData和axios进行文件上传。