जावास्क्रिप्ट का उपयोग करके मॉड्यूल आयात और निर्यात करने के लिए, कोड इस प्रकार है -
नोट - इस उदाहरण को चलाने के लिए आपको एक लोकलहोस्ट सर्वर चलाना होगा।
INDEX.html
उदाहरण
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.result {
font-size: 18px;
font-weight: 500;
}
</style>
</head>
<body>
<h1>JavaScript Importing and Exporting Modules</h1>
<button class="Btn">IMPORT</button>
<div class="result"></div>
<h3>
Click on the above button to import module
</h3>
<script src="script.js" type="module"></script>
<script src="sample.js" type="module"></script>
</body>
</html> script.js
import test from './sample.js';
document.querySelector('.Btn').addEventListener('click',()=>{
test();
}) से इम्पोर्ट टेस्ट नमूना.जेएस
let resultEle = document.querySelector(".result");
export default function testImport(){
resultEle.innerHTML = 'Module testImport has been imported';
} आउटपुट

'आयात' बटन पर क्लिक करने पर -
