我将图像值存储在变量中first_img
:
var first_img = $('img[alt="example"]').attr('src');
我想在null
单击按钮后设置值 JavaScript 或 jQuery。
我怎样才能做到这一点?
我将图像值存储在变量中first_img
:
var first_img = $('img[alt="example"]').attr('src');
我想在null
单击按钮后设置值 JavaScript 或 jQuery。
我怎样才能做到这一点?
src
单击图像时,您可以删除该属性:
$('img[alt="example"]').click(function() {
$(this).removeAttr('src');
});
<img>
或者从 DOM中完全删除标签:
$('img[alt="example"]').click(function() {
$(this).remove();
});
不确定我是否明白这一点,因为这听起来很明显?
var first_img = $('img[alt="example"]').attr('src');
$('button').on('click', function() {
first_img = null;
});
var first_img = $('<img alt="example"/>').attr('src',[...] )
.on('click',
function(){$(this).remove()}
);
Try this:-`enter code here`
***$('img[alt="example"]').click(function() {
$(this).removeAttr('src');
});***