• Ctrl+Enter 选中文本提交


    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">

    <body>
        <script language="javascript">
            var seltxt = '';
            function check() {
                alert(seltxt);
            }
            function getSelText(o) {
                o.focus();
                if (typeof document.selection != "undefined") {
                    return document.selection.createRange().text;
                } else {
                    return o.value.substr(o.selectionStart, o.selectionEnd
                            - o.selectionStart);
                }
            }

            function save() {
                alert(window.event.ctrlKey + "window.event.ctrlKey");
                alert(window.event.keyCode + "window.event.keyCode")
                if (window.event.keyCode == 13 && window.event.ctrlKey) {
                    //document.Form1.submit();
                    check();
                }
            }

            document.onkeydown = function(e) {

                e = e ? e : window.event;
                var keyCode = e.which ? e.which : e.keyCode;
                if (e.ctrlKey && keyCode == 13)
                    alert("Hello World!");
            }
        </script>
        <textarea cols="50" rows="10" name="description"
            onselect="javascript:seltxt=getSelText(this);">你好!请选择我提交</textarea>
        <input type="button" value="提交" onclick="check()" />
    </body>
  • 相关阅读:
    JavaScript学习总结(一)——ECMAScript、BOM、DOM(核心、浏览器对象模型与文档对象模型)
    IDEL——maven的搭建
    JDBC——Mysql 5.7绿色版配置安装过程
    JAVA的面向对象编程--------课堂笔记
    Javaweb第九章、jsp引入JSTL
    jsp引入JSTL后实现jsp的解耦
    servret的引入
    网页设计学习笔记小结
    jdk和Tomcat环境变量设置
    SLZ-VMware虚拟机_ORACLE安装监听器
  • 原文地址:https://www.cnblogs.com/wzzkaifa/p/6884070.html
Copyright © 2020-2023  润新知