作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$(document).on("click", '.goToInvocationList', function(){
<a href="#" id="create">Create slides</a>
});
此链接在加载页面后由 ajax 附加当我单击此链接时,它应该创建幻灯片,但它给了我这个错误未捕获的类型错误:无法读取未定义的属性“className”。但是当我将点击事件放在一个没有附加 javascript 的链接上时,它工作正常
$(document).on("click", '.go-invoice', function(){
sildes_create();
document.location.href='#invoce';
});
<div class="swiper-container">
<div class="swiper-wrapper"></div>
<span class="pagination"></span>
</div>
<script>
function sildes_create(){
count = 4;
var mySwiper = new Swiper('.swiper-container',{
pagination: '.pagination',
paginationClickable: true
});
for ( var i =0; i < 3; i++){
mySwiper.createSlide('<div class="title" style="color:#000">Slide '+ (++count)+'</div>', 'swiper-slide #000-slide').insertAfter(0);
}
}
</script>
最佳答案
创建链接后添加监听器:
$(document).on("click", '.goToInvocationList', function(){
$(something).append("<a href='#' id='create'>Create slides</a>")
$('#create').on('click',function(){sildes_create();})
});
关于javascript - 未捕获的类型错误 : Cannot read property 'className' of undefined?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22350690/
我是一名优秀的程序员,十分优秀!