将课程添加到其他课程?
Posted
技术标签:
【中文标题】将课程添加到其他课程?【英文标题】:Add a class to a different class? 【发布时间】:2018-08-03 15:52:25 【问题描述】:当我单击bookmark_icons
类时,我想向bookmark_edit
添加一个类。我怎样才能用 jQuery 做到这一点?
<div class="bookmark_outer">
<div class="bookmark_txt">
<h4 id="bookmark_id">Bookmark 1</h4><a href="#" class="bokmarksave"> <img src="icheck-icon.png" class="bookmark_edit"> </a>
<p> Lorem Ipsum is simply dummy text of the printing and </p>
<p class="page_num">Page 3 </p>
</div>
<div class="bookmark_icon">
<a href="#"><img src="edit.png" class="bookmark_icons"></a>
<a href="#" class="Bkhide"><img src="idelete.png" class="bookmark_icons"> </a>
</div>
</div>
【问题讨论】:
jquary
=> jQuery
api.jquery.com/click & api.jquery.com/addClass
另外,请花一些时间阅读帮助页面,尤其是名为"What topics can I ask about here?"、"What types of questions should I avoid asking?" 的部分,更重要的是,请阅读the Stack Overflow question checklist。您可能还想了解Minimal, Complete, and Verifiable Examples。
jquary > jquery
如果你不知道如何做绑定点击处理程序和添加类这样简单的事情,我建议你做一些教程,因为这是非常基本的东西,我还会添加一个单独的类来识别您的编辑按钮,否则您也将编辑功能绑定到您的删除图标
【参考方案1】:
$(".bookmark_edit").unbind("click").bind("click", function(event)
$(event.target).addClass("my_class");
【讨论】:
你错过了应该在书签图标上的点击事件中绑定它的部分以上是关于将课程添加到其他课程?的主要内容,如果未能解决你的问题,请参考以下文章