Events on dynamically added classes(动态添加的类上的事件)
问题描述
我有一个表单,其中按钮的类是动态变化的,具体取决于请求的来源.我正在尝试捕获 onclick 事件,但它不包含动态添加的类.我确保该类被添加到按钮中.我哪里出错了.
I have a form where the class of the button is dynamically changing, depending up where the request is coming from. I am trying to capture the onclick event, but it does not take in the dynamically added class. I made sure that the class is being added to the button. Where can I be going wrong.
片段 --
$('.button').removeClass('oldClass');
$('.button').addClass('newClass');
<button class = "button">Button</button>
点击--
$('.newClass').click(function(){
alert("test");
});
虽然按钮类已更改为 newClass,但代码未到达此事件事件.
The code does not get to this event event though the button class is changed to newClass.
谢谢
推荐答案
那是因为当你绑定点击事件时,元素有另一个类.
Thats cause when you bind the click event the element has another class.
试试这样的:
$('body').on('click', '.newClass', function () {
alert('test');
});
示例
这篇关于动态添加的类上的事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:动态添加的类上的事件
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01