百变鹏仔-专注前端行业精选
jq获取字符串中的数字 jq如何获取id里的数字
作者:鹏仔先生日期:2020-06-03 14:27:32浏览:4673分类:JavaScript
我的每个id为 id1、id2、id3....
每次我需要拿到id后面跟的数字
<!-- 简单写几个按钮 --> <div class="btn-box"> <button id="btn1">按钮1</button> <button id="btn2">按钮2</button> <button id="btn3">按钮3</button> </div>
<script> // 当点击时,我要拿到对应id后面拼接的数字来判别执行的事件 $(".btn-box button").click(function(){ var IdKey = $(this).attr('id').replace(/[^0-9]/ig,""); console.log(IdKey); }) </script>
手机扫码访问
猜你还喜欢
- 11-01 vue中实现代码高亮
- 08-09 vue动态修改网站的icon图标
- 07-08 VUE中ECharts提示框tooltip自动切换
- 07-03 网页中生成微信小程序二维码
- 07-02 微信小程序判断是安卓还是苹果
- 06-28 vue实现表格自动滚动功能 vue-seamless-scroll
- 04-19 VUE实现点击复制
- 04-16 vue将页面生成图片 vue生成海报
- 04-16 vue路由切换滑动效果 vue页面跳转交互 vue实现动画跳转
- 04-16 table固定表头和列 css实现表格固定表头
- 04-07 vue跳转页面清除历史记录,页面跳转删除历史记录
- 02-22 VUE You are using the runtime-only build of Vue where the template compiler is not available. Either
取消回复欢迎 你 发表评论:
- 搜索
- 随机tag
已有1位网友发表了看法:
访客 评论于 [2020-06-03 15:05:46] 回复
有用,感谢分享。