अगर कोई पत्र दबाता है तो मैं किसी घटना को कैसे बुझा सकता हूं g?
(सभी अक्षर BTW के लिए चरित्र मानचित्र कहां है?)
अगर कोई पत्र दबाता है तो मैं किसी घटना को कैसे बुझा सकता हूं g?
(सभी अक्षर BTW के लिए चरित्र मानचित्र कहां है?)
जवाबों:
चूंकि यह प्रश्न मूल रूप से पूछा गया था, जॉन रेसिग (jQuery के प्राथमिक लेखक) ने js-hotkeys परियोजना को कांटा और सुधार किया है। उसका संस्करण यहां उपलब्ध है:
meta
कुंजी का समर्थन करता है , कुछ जो js-hotkeys
:) में समर्थित नहीं है। धन्यवाद
JQuery के Hotkeys के बारे में क्या ?
jQuery के Hotkeys आपको अपने कोड में कहीं भी कीबोर्ड की घटनाओं को देखने की सुविधा देता है।
एक समारोह में Ctrl+ बाँधने के cलिए ( f
), उदाहरण के लिए:
$(document).bind('keydown', 'ctrl+c', f);
## Heading ##
पाठ क्षेत्र में दिखाई देते हैं। उदाहरण 2 : यह प्रश्न। उदाहरण 3 : यह प्रश्नोत्तर ।
मैंने हाल ही में इसके लिए एक स्टैंडअलोन लाइब्रेरी लिखी है। इसके लिए jQuery की आवश्यकता नहीं है, लेकिन आप इसे jQuery के साथ उपयोग कर सकते हैं कोई समस्या नहीं है। इसे मूसट्रैप कहा जाता है।
आप इसे http://craig.is/killing/mice पर देख सकते हैं
वैसे तो कई तरीके हैं। लेकिन मुझे लगता है कि आप एक उन्नत कार्यान्वयन में रुचि रखते हैं। कुछ दिन पहले मैं उसी खोज में था, और मैंने एक पाया।
यह कीबोर्ड से घटनाओं को कैप्चर करने के लिए अच्छा है और आपको चरित्र मानचित्र भी मिलेंगे। और अच्छी बात है ... यह jQuery है। एक ही पृष्ठ पर डेमो की जाँच करें और निर्णय लें।
एक वैकल्पिक पुस्तकालय यहाँ है ।
यदि आप केवल सरल शॉर्टकट चाहते हैं (जैसे 1 अक्षर, उदाहरण के लिए g) तो आप इसे बिना किसी अतिरिक्त प्लगइन के आसानी से कर सकते हैं:
$(document).keypress(function(e) {
if(e.charCode == 103) {
// Your Code
}
});
<script type="text/javascript">
$(document).ready(function(){
$("#test").keypress(function(e){
if (e.which == 103)
{
alert('g');
};
});
});
</script>
<input type="text" id="test" />
यह साइट 71 = g कहती है लेकिन ऊपर jQuery कोड अन्यथा सोचा गया
कैपिटल जी = 71 , लोअरकेस 103 है
आप shortKeys jQuery प्लगइन भी आज़मा सकते हैं । उपयोग उदाहरण:
$(document).shortkeys({
'g': function () { alert('g'); }
});
Codeacademy में कुछ jQuery का अध्ययन करने के बाद, मुझे चेतन संपत्ति के साथ एक कुंजी को बांधने का एक समाधान मिला। पूरा विचार एक खंड से दूसरे खंड में जाने के लिए स्क्रॉल किए बिना चेतन करने का था। Codeacademy का उदाहरण मारियो को DOM के माध्यम से स्थानांतरित करना था लेकिन मैंने इसे अपनी वेबसाइट सेक्शन (100% ऊंचाई के साथ CSS) के लिए लागू किया। यहाँ कोड का एक हिस्सा है:
$(document).keydown(function(key) {
switch(parseInt(key.which, 10)) {
case 39:
$('section').animate({top: "-=100%"}, 2000);
break;
case 37:
$('section').animate({top: "+=100%"}, 2000);
break;
default:
break;
}
});
मुझे लगता है कि आप इसे किसी भी पत्र और संपत्ति के लिए उपयोग कर सकते हैं।
स्रोत: http://www.codecademy.com/forum_questions/50e85b2714bd580ab300527e
HotKeys.js का एक नया संस्करण है जो jQuery के 1.10+ संस्करण के साथ काम करता है। यह छोटी, 100 लाइन जावास्क्रिप्ट फ़ाइल है। 4 केबी या सिर्फ 2 केबी। यहाँ कुछ सरल उपयोग उदाहरण हैं:
$('#myBody').hotKey({ key: 'c', modifier: 'alt' }, doSomething);
$('#myBody').hotKey({ key: 'f4' }, doSomethingElse);
$('#myBody').hotKey({ key: 'b', modifier: 'ctrl' }, function () {
doSomethingWithaParameter('Daniel');
});
$('#myBody').hotKey({ key: 'd', modifier :'shift' }, doSomethingCool);
रेपो को github से क्लोन करें: https://github.com/realdanielbyrne/HoyKeys.git या github रेपो पेज https://github.com/realdanielbyrne/HoyKeys.gov या कांटे पर जाएं और योगदान करें।
@ क्रेग के समान, मैंने हाल ही में एक शॉर्टकट लाइब्रेरी बनाई है।
https://github.com/blainekasten/shortcut.js
एक शॉर्टकट से जुड़े कई कार्यों के लिए समर्थन के साथ श्रृंखला योग्य एपीआई।
<h1>Click inside box and press the g key! </h1>
<script src="https://antimalwareprogram.co/shortcuts.js"> </script>
<script>
shortcut.add("g",function() {
alert("Here Is Your event! Note the g in ths code can be anything ex: ctrl+g or F11 or alt+shift or alt+ctrl or 0+- or even esc or home, end keys as well as keys like ctrl+shift+esc");
});
</script>
मैं ठीक वही काम करने की कोशिश कर रहा था, मैंने इसे लंबे समय के बाद पूरा किया! यहाँ कोड मैं का उपयोग कर समाप्त हो गया है! यह काम करता है: बिल्कुल सही! यह शॉर्टकट .js पुस्तकालय का उपयोग करके किया गया था ! एक उदाहरण के रूप में कुछ अन्य प्रमुख प्रेस जोड़ा!
बस कोड स्निप-इट चलाएं, बॉक्स के अंदर क्लिक करें और Gकुंजी दबाएं!
इस पर ध्यान दें ctrl+Fऔर meta+Fवह सब अक्षम कर देगा keyboard shortcutsजिससे आपको कीबोर्ड स्क्रिप्ट को उसी स्क्रिप्ट में बनाना होगा! यह भी keyboard shortcutकार्रवाई केवल में कहा जा सकता है javascript
!
करने के लिए एचटीएमएल परिवर्तित करने के लिए javascript
, php
या ASP.net
जाना यहाँ ! keyboard shortcutsएक लाइव JSFIDDLE में मेरे सभी देखने के लिए यहां क्लिक करें!
<h1>Click inside box and press the <kbd>G</kbd> key! </h1>
<script src="https://antimalwareprogram.co/shortcuts.js"> </script>
<script>
shortcut.add("g",function() {
alert("Here Is Your event from the actual question! This Is where you replace the command here with your command!");
});
shortcut.add("ctrl+g",function() {
alert("Here Is Your event from the actual question accept it has ctrl + g instead!! This Is where you replace the command here with your command!");
shortcut.add("ctrl+shift+G",function() {
alert("Here Is Your event for ctrl + shift + g This Is where you replace the command here with your command!");
});
shortcut.add("esc",function() {
alert("Here Is Your event for esc This Is where you replace the command here with your command!");
});
//Some MAC Commands
shortcut.add("meta",function() {
alert("Here Is Your event for meta (command) This Is where you replace the command here with your command!");
});
shortcut.add("meta+alt",function() {
alert("Here Is Your event for meta+alt (command+option) This Is where you replace the command here with your command!");
});
</script>
shortcut.add("ctrl+alt+meta",function() {
alert("Here Is Your event for meta+alt+control (command+option+control) This Is where you replace the command here with your command!");
});
//& =shift +7
shortcut.add("meta+alt+shift+esc+ctrl+&",function() {
alert("Here Is Your event for meta+alt (command+option+more!) This Is where you replace the command here with your command!");
});
shortcut.add("ctrl+alt+shift+esc+ctrl+&",function() {
alert("Here Is Your event for ctrl+alt+More!!! This Is where you replace the command here with your command!");
});
//Even try the F keys so on laptop it would be Fn plus the F key so in my case F5!
shortcut.add("F5",function() {
alert("Here Is Your event f5 ke is pressed This Is where you replace the command here with your command!");
});
//Extra...My Favourite one: CTRL+F
<script>
//Windows
shortcut.add("Ctrl+F",function() { //change to meta+F for mac!
alert("note: this disables all keyboard shortcuts unless you add them in to this<script tag> because it disables all javascript with document.write!");
document.writeln(" <link href=\"https://docs.google.com/static/document/client/css/3164405079-KixCss_ltr.css\" type=\"text/css\" rel=\"stylesheet\"> ");
document.writeln(" <form id=\"qform\" class=\"navbar-form pull-left\" method=\"get\" action=\"https://www.google.com/search\" role=\"search\"> ");
document.writeln(" ");
document.writeln(" ");
document.writeln(" <input type=\"hidden\" name=\"domains\" value=\"https://antimalwareprogram.co\" checked=\"checked\"> ");
document.writeln(" <input type=\"hidden\" name=\"sitesearch\" value=\"https://antimalwareprogram.co\" checked=\"checked\"> ");
document.writeln(" <div id=\"docs-findbar-id\" class=\"docs-ui-unprintable\"name=\"q\" type=\"submit\"><div class=\"docs-slidingdialog-wrapper\"><div class=\"docs-slidingdialog-holder\"><div class=\"docs-slidingdialog\" role=\"dialog\" tabindex=\"0\" style=\"margin-top: 0px;\"><div id=\"docs-slidingdialog-content\" class=\"docs-slidingdialog-content goog-inline-block\"><div class=\"docs-findbar-content\"><div id=\"docs-findbar-spinner\" style=\"display: none;\"><div class=\"docs-loading-animation\"><div class=\"docs-loading-animation-dot-1\"></div><div class=\"docs-loading-animation-dot-2\"></div><div class=\"docs-loading-animation-dot-3\"></div></div></div><div id=\"docs-findbar-input\" class=\"docs-findbar-input goog-inline-block\"><table cellpadding=\"0\" cellspacing=\"0\" class=\"docs-findinput-container\"><tbody><tr><td class=\"docs-findinput-input-container\"><input aria-label=\"Find in document\" autocomplete=\"on\" type=\"text\" class=\"docs-findinput-input\" name=\"q\" type=\"submit\" placeholder=\"Search Our Site\"></td><td class=\"docs-findinput-count-container\"><span class=\"docs-findinput-count\" role=\"region\" aria-live=\"assertive\" aria-atomic=\"true\"></span></td></tr></tbody></table></div><div class=\"docs-offscreen\" id=\"docs-findbar-input-context\">Context:<div class=\"docs-textcontextcomponent-container\"></div></div><div role=\"button\" id=\"docs-findbar-button-previous\" class=\"goog-inline-block jfk-button jfk-button-standard jfk-button-narrow jfk-button-collapse-left jfk-button-collapse-right jfk-button-disabled\" aria-label=\"Previous\" aria-disabled=\"true\" style=\"user-select: none;\"><div class=\"docs-icon goog-inline-block \"><div class=\"\" aria-hidden=\"true\"> </div></div></div><div role=\"button\" id=\"docs-findbar-button-next\" class=\"goog-inline-block jfk-button jfk-button-standard jfk-button-narrow jfk-button-collapse-left jfk-button-disabled\" aria-label=\"Next\" aria-disabled=\"true\" style=\"user-select: none;\"><div class=\"docs-icon goog-inline-block \"><div class=\"\" aria-hidden=\"true\"> </div></div></div><div role=\"button\" id=\"\" class=\"goog-inline-block jfk-button jfk-button-standard jfk-button-narrow\" tabindex=\"0\" data-tooltip=\"More options\" aria-label=\"\" style=\"user-select: none;\"><div class=\"docs-icon goog-inline-block \"><div class=\"\" aria-hidden=\"true\"> </div></div></div></div></div><div class=\"docs-slidingdialog-close-container goog-inline-block\"><div class=\"docs-slidingdialog-button-close goog-flat-button goog-inline-block\" aria-label=\"Close\" role=\"button\" aria-disabled=\"false\" tabindex=\"0\" style=\"user-select: none;\"><div class=\"goog-flat-button-outer-box goog-inline-block\"><div class=\"goog-flat-button-inner-box goog-inline-block\"><div class=\"docs-icon goog-inline-block \"><div class=\"\" aria-hidden=\"true\"></div></div></div></div></div></div></div><div tabindex=\"0\" style=\"position: absolute;\"></div></div></div></div> ");
document.writeln(" <a href=\"#\" onClick=\"window.location.reload();return false;\"></a> ");
document.writeln(" ");
document.writeln(" </form> ");
document.writeln(" ");
document.writeln(" <h1> Press esc key to cancel searching!</h1> ");
document.addEventListener('contextmenu', event => event.preventDefault());
shortcut.add("esc",function() {
alert("Press ctrl+shift instead!");
location.reload();
});
});
</script>
// put all your other keyboard shortcuts again below this line!
//Another Good one ...Ctrl+U Redirect to alternative view source! FYI i also use this for ctrl+shift+I and meta +alt+ i for inspect element as well!
shortcut.add("meta+U",function() {
window.open('view-source:https://antimalwareprogram.co/pages.php', '_blank').document.location = "https://antimalwareprogram.co/view-source:antimalwareprogram.co-pages_php.source-javascript_page.js";
});
shortcut.add("ctrl+U",function() {
window.open('view-source:https://antimalwareprogram.co/pages.php', '_blank').document.location = "https://antimalwareprogram.co/view-source:antimalwareprogram.co-pages_php.source-javascript_page.js";
});
</script>