cmd-enter

码农软件 · 软件分类 · jQuery表单及相关 · 2019-12-23 10:43:49

软件介绍

cmd-enter 对页面上的 textarea 输入框绑定了 Ctrl+Enter 和 CMD + Enter 快捷键提交的功能。

其效果相当于:

$(document).on('keydown', '.usertext-edit textarea', function(e) {
  if(e.keyCode == 13 && (e.metaKey || e.ctrlKey)) {
    $(this).parents('form').submit()
  }
})

本文地址:https://www.codercto.com/soft/d/21767.html

XMPP

XMPP

Peter Saint-Andre、Kevin Smith、Remko TronCon / O'Reilly Media / 2009-5-4 / USD 39.99

This practical book provides everything you need to know about the Extensible Messaging and Presence Protocol (XMPP). This open technology for real-time communication is used in many diverse applicati......一起来看看 《XMPP》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具