javascript – DOMException无法在’Element’和’releasePointerCapture’上执行’setPointerCapture’

前端之家收集整理的这篇文章主要介绍了javascript – DOMException无法在’Element’和’releasePointerCapture’上执行’setPointerCapture’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个混合应用程序,其中我使用了bxslider并将div放在其中,如下所示,
<div class="bxslider">
            <div id="chart1" style="text-align:center">
                <span id="barChartTitle">Bar Chart</span>
                <svg id="chartCanvas" class="margintop40"></svg>
            </div>
            <div id="chart2" style="text-align:center">
                <span id="trendChartTitle">Trend Chart</span> 
                <svg id="chartCanvas" class="margintop40"></svg>
            </div>
        </div>

当我在html视图中触摸bxslider时,我收到以下错误,

jquery.bxslider.js:1109 Uncaught DOMException: Failed to execute 'setPointerCapture' on 'Element': InvalidPointerId
    at HTMLDivElement.onTouchStart (http://localhost:8100/js/jquery.bxslider.js:1109:34)
    at HTMLDivElement.dispatch (http://localhost:8100/js/jquery-3.1.1.min.js:3:10315)
    at HTMLDivElement.q.handle (http://localhost:8100/js/jquery-3.1.1.min.js:3:8342)
onTouchStart @ jquery.bxslider.js:1109
dispatch @ jquery-3.1.1.min.js:3
q.handle @ jquery-3.1.1.min.js:3
jquery.bxslider.js:1234 Uncaught DOMException: Failed to execute 'releasePointerCapture' on 'Element': InvalidPointerId
    at HTMLDivElement.onTouchEnd (http://localhost:8100/js/jquery.bxslider.js:1234:32)
    at HTMLDivElement.dispatch (http://localhost:8100/js/jquery-3.1.1.min.js:3:10315)
    at HTMLDivElement.q.handle (http://localhost:8100/js/jquery-3.1.1.min.js:3:8342)

搜索了很多,但无法找出错误发生的原因,请帮忙.

解决方法

这是一个有效的解决方法.使用此代码段:
var chromePointerEvents = typeof PointerEvent === 'function'; if (chromePointerEvents) { if (orig.pointerId === undefined) { return; } }

插入后:

touchPoints = (typeof orig.changedTouches !== 'undefined') ? orig.changedTouches : [orig];

文件jquery.bxslider.js

更多信息在这里 read simplicitytrade answer on Github.

原文链接:https://www.f2er.com/js/240701.html

猜你在找的JavaScript相关文章