Computer >> Máy Tính >  >> Lập trình >> Javascript

Đổi tên nhập và xuất trong JavaScript

Sau đây là mã để đổi tên nhập và xuất trong JavaScript -

Lưu ý - Bạn cần chạy một máy chủ localhost để chạy ví dụ này.

Ví dụ

<!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;
      color: rebeccapurple;
   }
</style>
</head>
<body>
<h1>Renaming imports and exports in JavaScript</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to execute the imported function</h3>
<script src="script.js" type="module"></script>
</body>
</html>

script.js

import {test,tellTime as showTime} from "./sample.js";
let resultEle = document.querySelector('.result');
document.querySelector('.Btn').addEventListener('click',()=>{
   resultEle.innerHTML+=test();
   resultEle.innerHTML+=showTime();
})

sample.js

function testImport() {
   return "Module testImport has been imported" + "<br>";
   }
   function tellTime() {
      return new Date();
   }
export { testImport as test, tellTime };

Đầu ra

Đổi tên nhập và xuất trong JavaScript

Khi nhấp vào nút 'BẤM VÀO ĐÂY' -

Đổi tên nhập và xuất trong JavaScript