我在jspx页面中使用“ Nearby Image Partial Visible ”滑块。除一个问题外,滑块工作正常。导航的右箭头不会出现。虽然我的源代码是正确的,但当我运行页面时,结构会发生变化。通过查看页面的HTML DOM,我认为这是因为右箭头嵌套在左箭头的元素内。
我的箭头源代码如下 -
<span u="arrowleft" class="jssora13l" style="top: 123px; left: 30px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora13r" style="top: 123px; right: 30px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
但在浏览器中,HTML如下:
<span u="arrowleft" class="jssora13l" style="top: 123px; left: 30px;">
<!-- Arrow Right -->
<span u="arrowright" class="jssora13r" style="top: 123px; right: 30px;">
</span>
</span>
我无法弄清楚这个问题。请帮忙。