我正在制作一个div,其值会随着使用jquery单击的图像而变化,但是我找不到解决方法。
<img src="{%static "/images/icons/share.png" %}" style="float: right;" value="{{c.id}}" class="ShareButtonser"/>
$('.ShareButtonser').click(
function Sharer(){
console.log("This function is accessed");
idm=$(this).attr('value');
console.log(idm);
});
<div id="share-buttons"> <!-- Facebook -->
<a href="https://www.facebook.com/sharer.php?u={{domain}}" class="ShareLink" target="_blank">
<img src="{%static "images/icons/facebook.png" %}" alt="Facebook" />
<p>Facebook</p>
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=http://127.0.0.1:8000/Channels/&text=Simple Share Buttons" target="_blank" class="ShareLink">
<img src="{%static "images/icons/twitter.png" %}" alt="Twitter" />
<p>Twitter</p>
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://frinmash.blogspot.com&title=Simple Share Buttons" target="_blank" class="ShareLink">
<img src="https://4.bp.blogspot.com/-1-mZEa1eiyc/UwNI4JytiFI/AAAAAAAAGSs/AoKmBkkJR-s/s1600/reddit.png" alt="Reddit" /> <p>Reddit</p>
</a> </div>
我希望它会根据其图像的值来更改其链接。但是我真的不知道该怎么做?