การเปิดเผยข้อมูล: ผมเขียนโค้ดที่ใช้ Trello ; โค้ดด้านล่างนี้เป็นรหัสแหล่งที่มาจริงของ Trello ที่ใช้เพื่อให้บรรลุเคล็ดลับคลิปบอร์ด
เราไม่ได้จริง "การเข้าถึงคลิปบอร์ดของผู้ใช้" แทนเราช่วยให้ผู้ใช้ออกบิตโดยการเลือกสิ่งที่มีประโยชน์เมื่อพวกเขากด+CtrlC
ดูเหมือนคุณจะคิดออก เราใช้ประโยชน์จากข้อเท็จจริงที่ว่าเมื่อคุณต้องการกดCtrl+ Cคุณต้องกดCtrlปุ่มแรก เมื่อCtrlกดปุ่มเราปรากฏใน textarea ที่มีข้อความที่เราต้องการที่จะจบลงบนคลิปบอร์ดและเลือกข้อความทั้งหมดในนั้นเพื่อเลือกจะถูกตั้งค่าเมื่อCกดปุ่ม (จากนั้นเราซ่อน textarea เมื่อCtrlคีย์ขึ้นมา)
โดยเฉพาะ Trello ทำสิ่งนี้:
TrelloClipboard = new class
constructor: ->
@value = ""
$(document).keydown (e) =>
# Only do this if there's something to be put on the clipboard, and it
# looks like they're starting a copy shortcut
if !@value || !(e.ctrlKey || e.metaKey)
return
if $(e.target).is("input:visible,textarea:visible")
return
# Abort if it looks like they've selected some text (maybe they're trying
# to copy out a bit of the description or something)
if window.getSelection?()?.toString()
return
if document.selection?.createRange().text
return
_.defer =>
$clipboardContainer = $("#clipboard-container")
$clipboardContainer.empty().show()
$("<textarea id='clipboard'></textarea>")
.val(@value)
.appendTo($clipboardContainer)
.focus()
.select()
$(document).keyup (e) ->
if $(e.target).is("#clipboard")
$("#clipboard-container").empty().hide()
set: (@value) ->
ใน DOM เรามี
<div id="clipboard-container"><textarea id="clipboard"></textarea></div>
CSS สำหรับเนื้อหาคลิปบอร์ด:
#clipboard-container {
position: fixed;
left: 0px;
top: 0px;
width: 0px;
height: 0px;
z-index: 100;
display: none;
opacity: 0;
}
#clipboard {
width: 1px;
height: 1px;
padding: 0px;
}
... และ CSS ทำให้คุณไม่สามารถมองเห็น textarea ได้จริงเมื่อมันปรากฏขึ้นใน ... แต่มัน "มองเห็นได้" พอที่จะคัดลอกได้
เมื่อคุณวางเมาส์เหนือการ์ดจะมีการโทร
TrelloClipboard.set(cardUrl)
... ดังนั้นผู้ช่วยคลิปบอร์ดก็รู้ว่าต้องเลือกอะไรเมื่อCtrlกดปุ่ม