我将jQuery滑块与转发器字段组合在一起。 在转发器下,我有2个子场。一个名为“image_carousel1”,另一个名为“image_carousel_discription”
此滑块有一个名为“sc-selected”的类,在选择图像时会动态显示。 (当这个类在图像上时,图像会改变它的大小)。
TextBox
JS-“carousel on”将“sc-selected”类添加到图像中。
public class MyTextBox : TextBox
{
protected override void OnKeyDown(KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
Parent.SelectNextControl(this, true, true, true, true);
e.Handled = true;
e.SuppressKeyPress = true; // suppress Ding sound
}
base.OnKeyDown(e);
}
}
我试图定义当“sc-selected”类在某个图像上并且“data-row”在“image11”和“change_h2”中相等时,“image_carousel_discription”形成同一行的“ image_carousel1“将出现,(我在JS函数中定义了这个)
这是显示图像和标题的代码。
我的问题在于JavaScript函数,数据行始终保留在第一行,并且在所选的每个图像中,它一直显示在控制台日志“1”(第一个数据行)中