-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>URL Cleaner</title>
</head>
<body>
<label for="url">ใส่ลิงก์ URL:</label><br>
<input type="text" id="url" name="url"><br>
<button onclick="cleanURL()">ลบส่วนที่ไม่ต้องการ</button>
<div id="result"></div> <!-- ส่วนที่ใช้แสดงผลลัพธ์ -->
<button onclick="copyResult()">คัดลอกผลลัพธ์</button> <!-- ปุ่มคัดลอก -->
<script>
async function cleanURL() {
const url = document.getElementById("url").value;
const response = await fetch('/webhook', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: new URLSearchParams({
url: url
}),
});
const result = await response.text();
document.getElementById("result").innerText = result; // แสดงผลลัพธ์
}
function copyResult() {
const resultText = document.getElementById("result").innerText;
// สร้าง element textarea เพื่อให้ง่ายต่อการคัดลอกข้อมูล
const textarea = document.createElement("textarea");
textarea.value = resultText;
document.body.appendChild(textarea);
// คัดลอกข้อมูล
textarea.select();
document.execCommand("copy");
// ลบ element textarea ทิ้ง
document.body.removeChild(textarea);
alert("คัดลอกผลลัพธ์แล้ว: " + resultText);
}
</script>
</body>
</html>