0

我有一个选框,它在我的 Web 应用程序中滚动动态数据,它停止了一点再次开始滚动,就像有人停止它并再次拖动一种行为,当其他 ajax 响应接收和更新 html 页面中的数据时。这是选框标签的问题吗?

<marquee scrollamount="1" scrolldelay="10">
    <span id="HPQ" class="syPrice">22.20</span>
    <span id="APQ" class="ayPrice">12.20</span>
    <span id="BPQ" class="byPrice">18.10</span>
    <span id="CPQ" class="cyPrice">65.20</span>
    <span id="DPQ" class="dyPrice">87.56</span>
    <span id="EPQ" class="eyPrice">15.24</span>
    <span id="FPQ" class="fyPrice">34.45</span>
    <span id="GPQ" class="gyPrice">16.20</span>
</marquee>

我的 ajax 调用响应也不断更新此页面。

function dataUpdate(){
          $.ajax({
                  type : "GET",
                   url : '../myJsonData.xhtml',
                  dataType : "json",
                  async : true,
                  cache : false,

                  success: function(data) {
                     $.each(data, function(i, item) {
                      /* updates data here */
                     });
                  setTimeout('dataUpdate()',1000);
                  },
                  error : function() {
              }
             });
          }   

我以类似于上面的 ajax 调用的方式更新选取框数据

4

1 回答 1

1

不,这不是 marquee 标签的具体问题。

浏览器在用户界面中一次只做一件事。只要脚本正在运行,页面中就没有任何更新。

如果您有任何其他移动元素,例如动画 GIF,您会看到它们也会在脚本运行时暂停一段时间。

于 2012-10-10T10:38:51.497 回答