在电脑上运行良好。在计算机上,输入单词并按空格键后,单词会被包裹在一个框中,您可以选择将其删除。在手机上,按空格键后什么也不会发生。它也不限制手机上的 5 个单词。工作 jsfiddle:http://jsfiddle.net/1hco43vr/ $('#box a').on('click', function() { $(this).parent().parent().remove(); console.log('remove disabled'); if ($('#box ul li').length <= 5) { $('#type').prop('disabled', false); } });}$('#type').keypress(function(e) { if (e.which == 32) { //change to 32 for spacebar instead of enter var tx = $(this).val(); if ($('#box ul li').length > 5) { $(this).val(''); console.log('add disabled'); $('#type').prop('disabled', 'disabled'); } else { if (tx) { $(this).val('').parent().before('<li><span>' + tx + '<a href="javascript:void(0);">x</a></span></li>'); closer(); } } }});
添加回答
举报
0/150
提交
取消