如何让JavaScript函数更加简洁?
我是 StackOverflow 的新手,需要一些有关以下 JavaScript、jQuery 问题的帮助。
是否有更简洁的方法来编写以下代码?:
jQuery(document).ready(function () {
$("#article1").click(function(){
showarticleDescription(id=1);
})
$("#article2").click(function(){
showarticleDescription(id=2);
})
$("#article3").click(function(){
showarticleDescription(id=3);
})
$("#article4").click(function(){
showarticleDescription(id=4);
})
$("#article5").click(function(){
showarticleDescription(id=5);
})
})
I'm new to StackOverflow and needed some help with the following JavaScript, jQuery question.
Is there a more concise way to code the following?:
jQuery(document).ready(function () {
$("#article1").click(function(){
showarticleDescription(id=1);
})
$("#article2").click(function(){
showarticleDescription(id=2);
})
$("#article3").click(function(){
showarticleDescription(id=3);
})
$("#article4").click(function(){
showarticleDescription(id=4);
})
$("#article5").click(function(){
showarticleDescription(id=5);
})
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以使用 CSS 选择器开头:
最好在这里应用一个公共类(并且可能使用自定义属性)。在 HTML 中,您可以执行以下操作:
We can use the starts with CSS selector:
It'd be better though to apply a common class here (and possibly use a custom attribute). In the HTML you can do something like:
向元素添加类和数据属性(而不是依赖 id)并使用事件委托 捕获在 DOM 中“冒泡”的点击事件,然后调用该函数。
Add classes and data attributes to your elements (rather than relying on ids) and use event delegation to capture the click events as they "bubble up" the DOM, and then call the function.