GithubHelp home page GithubHelp logo

Comments (6)

sentsim avatar sentsim commented on July 19, 2024 1

回车事件自行绑定一下

<select id="select-id">
  <!-- … -->
</select>

<script>
layui.use(function() {
  var $ = layui.$;
  $('body').on('keydown', '#select-id+', function(e) {
    var value = e.target.value;
    if (e.keyCode === 13) {
      alert(value);
    }
  });
});
</script>

最好还是通过 form 的 select 事件统一处理,按回车键后最终也会触发 select 事件

from layui.

sentsim avatar sentsim commented on July 19, 2024 1

#select-id+,不是 #select-id,注意 +

from layui.

aimu2000 avatar aimu2000 commented on July 19, 2024

有时候需要自定义输入信息.本身没有,再去选择就麻烦了许多,按回车确认了最上面那条就方便了.能在这个前面处理拼音首字母搜索.
输入的无匹配项的时候,按下回车就把输入的信息作为值来处理

from layui.

aimu2000 avatar aimu2000 commented on July 19, 2024

回车事件自行绑定一下

<select id="select-id" lay-search="" lay-creatable="">
  <!-- … -->
</select>

<script>
layui.use(function() {
  var $ = layui.$;
  $('body').on('keydown', '#select-id', function(e) {
    var value = e.target.value;
    if (e.keyCode === 13) {
      alert(value);
    }
  });
});
</script>

最好还是通过 form 的 select 事件统一处理,按回车键后最终也会触发 select 事件

刚试了下,没弹出

from layui.

aimu2000 avatar aimu2000 commented on July 19, 2024

from layui.

aimu2000 avatar aimu2000 commented on July 19, 2024

回车事件自行绑定一下

<select id="select-id">
  <!-- … -->
</select>

<script>
layui.use(function() {
  var $ = layui.$;
  $('body').on('keydown', '#select-id+', function(e) {
    var value = e.target.value;
    if (e.keyCode === 13) {
      alert(value);
    }
  });
});
</script>

最好还是通过 form 的 select 事件统一处理,按回车键后最终也会触发 select 事件

select里面没有值,可以获取得到,但是里面本身有值, lay-search="" lay-creatable="" 创建出来的,获取不到!

from layui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.