一、select下拉框 不能复制的问题?
解决方法:user-select: all;
<label for="serviceType" style="display: inline-block;width: 65px;text-align: right;line-height: 35px">类别:</label>
<select class="form-control" id="serviceType" onkeydown="if(event.keyCode == 13){return false;}" style="user-select: all;width: 120px;margin-right: 5px"></select>
参考:CSS user-select 属性
select2 下拉框,无法使用鼠标选择复制问题_weixin_43877417的博客-CSDN博客
?
二、select下拉框禁用回车打开事件,回车要用于查询
解决方法:οnkeydοwn="if(event.keyCode == 13){return false;}"?
<label for="serviceType" style="display: inline-block;width: 65px;text-align: right;line-height: 35px">类别:</label>
<select class="form-control" id="serviceType" onkeydown="if(event.keyCode == 13){return false;}" style="user-select: all;width: 120px;margin-right: 5px"></select>
参考:禁止文本框回车提交事件_weixin_34026484的博客-CSDN博客
|