jq获取字符串中的数字 jq如何获取id里的数字

2024年04月01日 懒猪 前端开发 前端博客 个人博客 网站制作 鹏仔先生 百变鹏仔 HTML CSS javascript JS 共享博客

我的每个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>


本文链接:http://so.lmcjl.com/news/849/

展开阅读全文