我正在尝试触发一个功能,以在隐藏另一个字段时显示一些输入字段。我有一个临时的解决方案,但这并不能创造最佳的用户体验。
$('#accordion-section-slider').click(function()
{
if ($("#customize-control-slider_full_height").css('display') == 'none')
{
$('#customize-control-slider_height_input,
#customize-control-slider_height,
#customize-control-slider_max_height_input,
#customize-control-slider_max_height')
.slideDown(500);
}
});
当新的 Wordpress 自定义程序预览加载时,我希望if语句触发触发。我注意到有一个新的 iframe 加载并替换了旧的iframe ...然后卡住了。任何帮助深表感谢!