第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 enter 從輸入切換焦點(diǎn)

使用 enter 從輸入切換焦點(diǎn)

Helenr 2022-12-29 16:16:13
我有一個(gè) html 表單,我需要使用 enter 鍵從輸入切換焦點(diǎn)(感謝我的主管說(shuō)大多數(shù)人不知道 tab 鍵的用途)我已經(jīng)嘗試過(guò)這個(gè)解決方案<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">jQuery.extend(jQuery.expr[':'], {    focusable: function (el, index, selector) {            return $(el).is('a, button, :input, [tabindex]');    }    });$(document).on('keydown', 'focusable', function (e) {        if (e.which == 13) {            e.preventDefault();            var $canfocus = $(':focusable');            var index = $canfocus.index(this) + 1;            if (index >= $canfocus.length) index = 0;            $canfocus.eq(index).focus();    }    });    </script>這是我的表格<form method = "post" action = "<?php echo htmlspecialchars($_SERVER['PHP_SELF'])?>">        <label for = "maquina">Maquina:</label><span class = "error"> * <?php echo $maquinaErr;?></span><br>        <input type = "number" id = "maquina" name = "maquina" size = "20" tabindex = "1" value = "<?php echo $maquina;?>" autofocus><br><br>        <label for = "gafete">Numero de gafete:</label><span class = "error" id = "eGafete"> * <?php echo $gafeteErr;?></span><br>        <input type = "number" id = "gafete" name = "gafete" size = "20" tabindex = "2" value = "<?php echo $gafete;?>" onchange = "llamarGafete()">        <br><br>        <label for = "nparte">Numero de parte del componente:</label><span class = "error" id = "eNparte"> * <?php echo $nparteErr;?></span><br>        <input type = "number" id = "nparte" name = "nparte" size = "20" tabindex = "3" value = "<?php echo $nparte;?>" onchange = "llenarUM()"><br><br>        <label for = "um">UM:</label><span class = "error"> * <?php echo $umErr;?></span><br>        <input type = "text" id = "um1" name = "um" size = "20" tabindex = "-1" value = "<?php echo $um;?>" readonly><br><br>    </form>
查看完整描述

1 回答

?
猛跑小豬

TA貢獻(xiàn)1858條經(jīng)驗(yàn) 獲得超8個(gè)贊

你忘了在新的可聚焦偽類(lèi)前面加上:

$(document).on('keydown', ':focusable', function (e) {


查看完整回答
反對(duì) 回復(fù) 2022-12-29
  • 1 回答
  • 0 關(guān)注
  • 87 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)