- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以基本上我有一个寻找 div 并向其附加 iframe 的代码,但我仅将它们作为 if 语句的开始,知道如何重构它们,尝试了一些 else-if 但他们没有'不工作。代码如下所示:
if ($('.similar-products')) {
$('.similarproducts').append(iframe_html);
}
if ($('.partial--product')){
$('.partial--product').append(iframe_html);
}
if ($('.product-page')){
$('div.product-page').append(iframe_html);
}
if($('#section-product-page')){
$('#section-product-page').append(iframe_html);
}
//needs fix
if($('.swatch-product-id-*')){
$('.swatch-product-id-*').append(iframe_html);
}
if($('.product__tabs')){
$('.product__tabs').append(iframe_html);
}
if($('.main-content-wrapper')){
$('.main-content-wrapper').append(iframe_html);
}
if($('#shopify-section-product-description-bottom-template')){
$('#shopify-section-product-description-bottom-template').append(iframe_html);
}
if($('.product-details-inline')){
$('.product-details-inline').append(iframe_html);
}
if($('.social-footer')){
$('.social-footer').prepend(iframe_html);
}
if($('.section-related-products')){
$('.section-related-products').append(iframe_html);
}
if($('.product-details')){
$('.product-details').append(iframe_html);
}
最佳答案
我猜你在这里使用的是 jQuery。如果是这样的话,有 if
block 是没有意义的。因为 jQuery 会查找匹配的选择器并执行函数中指定的任务。如果没有找到给定选择器的元素,则例程将被忽略,不会出现错误。所以,有类似的东西
if ($('.similar-products')) {
$('.similarproducts').append(iframe_html);
}
与
没什么不同$('.similarproducts').append(iframe_html);
此外,考虑对选择器进行分组,如果 <iframe>
您附加的内容对于所有人来说都是相同的。所以它会是这样的
$('.similarproducts, .partial--product' /* Rest of the selectors */).append(iframe_html);
关于javascript - 我怎样才能以聪明的方式重构它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49893534/
Closed. This question is opinion-based。它当前不接受答案。
我知道如何创建和编写我自己的安装程序,但我需要在某些时候被重定向。这一点我肯定也会启发其他人。 我创建了一个安装项目。一切都完成了。 EXE 中的安装文件除外。 我知道有两种不同的方法: 在 EXE
重复 What is a PHP Framework?and many more 到目前为止,我一直在使用 PHP 进行小的调整,主要是使用 WordPress。什么是 PHP 框架?为什么我需要它们
我刚刚发现 String#split 有以下奇怪的行为: "a\tb c\nd".split => ["a", "b", "c", "d"] "a\tb c\nd".split(' ') => ["a
我是一名优秀的程序员,十分优秀!