View Full Version : คำเตือน!!! อันตรายจากการใช้ Copy+Paste ระวังไว้ไม่เสียหลาย
**Hidden Content: Check the thread to see hidden data.**
เคยเห็นถ้าเป็น web สามารถทำแบบนี้ได้ function CopyToClipboard()
{
CopiedTxt = document.selection.createRange();
CopiedTxt.execCommand("Copy");
}
function PasteFromClipboard()
{
document.Form1.txtArea.focus();
PastedText = document.Form1.txtArea.createTextRange();
PastedText.execCommand("Paste");
}
ถ้าเอาไปใช้ต่อก็สามารถส่งข้อมูลต่าง ไปฝั่ง server ได้เช่นกัน อันตรายจิงๆ
Powered by vBulletin® Version 4.2.5 Copyright © 2026 vBulletin Solutions Inc. All rights reserved.