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.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<script>
const htmlDocument = document.implementation.createHTMLDocument();
const customURL = htmlDocument.createElement( 'base' );
customURL.href = "https://www.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)」を保存して、ファイルを右クリックします。 VSCodeEditorで[OpenwithLiveServer]オプションを選択します。
これにより、次の出力が生成されます。コンソール上-
Base URL=https://www.tutorialspoint.com/java/index.htm After Modifying URL=https://www.tutorialspoint.com/java/java_questions_answers.html
-
ドキュメント全体のHTMLをJavaScriptで文字列として取得するにはどうすればよいですか?
ドキュメントのHTML全体を文字列として取得するには、-のようなinnerHTMLの概念を使用します。 document.documentElement.innerHTML; 例 以下はコードです- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-widt
-
JavaScriptでやることリストを作成する
例 以下は、やることリストを作成するためのコードです- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</ti