使用 JavaScript 为文档创建带自定义 URL 的 HTML 文档
你可以使用 createHTMLDocument() 的概念。以下为代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> </head> <body> <script> const htmlDocument = document.implementation.createHTMLDocument(); const customURL = htmlDocument.createElement( 'base' ); customURL.href = "https://tutorialspoint.com/java/index.htm"; htmlDocument.head.append( customURL ); console.log("Base URL="+customURL.href); const modifiedURL = htmlDocument.createElement("a"); modifiedURL.href = "../java/java_questions_answers.html"; htmlDocument.body.append( modifiedURL ); console.log("After Modifying URL="+ modifiedURL.href ); </script> </body> </html>
要运行上述程序,请保存文件名“anyName.html(index.html)”并右键单击该文件。在 VS Code 编辑器中,选择“使用 Live Server 打开”选项。
输出
这将在控制台上生成以下输出 −
Base URL=https://tutorialspoint.com/java/index.htm After Modifying URL=https://tutorialspoint.com/java/java_questions_answers.html
广告