- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这很简单,但我不明白为什么它不起作用我只需要使用非常简单的 javascript 更改按钮的标签(里面有很棒的图标),如下所示。如果只有一件事(图标或文本),此代码也可以正常工作,但如果我尝试更改两者,则会导致错误
Uncaught TypeError: Cannot read property 'classList' of null
HTML
<body>
<h1 class="text-center">Button Test Bed</h1>
<div class="container-fluid">
<button type="button" class="btn btn-default go" id='_edit'><i class="fa fa-pencil-square-o"></i> Edit</button>
</div>
</body>
Javascript
var button = document.querySelector('#_edit');
button.addEventListener('click', function(event) {
buttonChageState(event, this);
}, false);
function buttonChageState(event, target) {
this.buttonState ;
// console.log('event:', event);
// console.log('target', target);
this.icon = target.querySelector('i');
if (this.buttonState == 0 || typeof (this.buttonState) == 'undefined') {
console.log('this.buttonState:', this.buttonState);
icon.classList.remove("fa-pencil-square-o");
icon.classList.add("fa-ban");
target.innerHTML = "Cancel";
this.buttonState = 1;
} else if(this.buttonState==1) {
console.log('this.buttonState:', this.buttonState);
icon.classList.remove("fa-ban");
icon.classList.add("fa-pencil-square-o");
target.innerHTML = "Edit";
this.buttonState = 0;
}
}
最佳答案
问题是您在本例中使用了“this”和 target.innerHTML。请改用此代码:
var icon = target.querySelector('i');
和
icon.innerHTML = "Cancel";
关于javascript - 无法同时从 awesomefont 更改文本和图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32373888/
我知道这很简单,但我不明白为什么它不起作用我只需要使用非常简单的 javascript 更改按钮的标签(里面有很棒的图标),如下所示。如果只有一件事(图标或文本),此代码也可以正常工作,但如果我尝试更
我有一个图像,它是从一个 awesomefont 字符显示的,旁边有文本。我遇到的问题是我不希望文本出现在图像下方,而是在图像右侧右对齐。我试过使用单独的容器和不同类型的对齐代码,但我无法让它执行我需
在提问之前,我一直在浏览搜索问答,但没有找到任何答案。 对于我的元素,我必须创建一个网站,他们给了我一个文件夹“fonts”供我下载,其中包含我需要的字体,我有 2 种字体,“FontAwesome”
我想在我的 Qt 应用程序中使用 fontawesome ( http://fontawesome.io/icons ) 中的一些图标,我已经将 fontawesome-webfont.ttf 文件提
我有一个 JButton,我想给它添加一个图标。我想使用 FontAwesome 提供的基于字体的图标,它提供了一个 TrueType 字体文件。我要添加的图标是播放按钮图标。 FontAwesome
我是一名优秀的程序员,十分优秀!