用脚本触发touchstart事件


<script>window.onload = function () {

    var bot = document.getElementById('bot');
    bot.addEventListener('touchstart', function () {
        alert('touchstart');
    });
    
    creatTouchstartEventAndDispatch(bot);
    
    function creatTouchstartEventAndDispatch (el) {
        var event = document.createEvent('Events');
        event.initEvent('touchstart', true, true);
        el.dispatchEvent(event);
    }
    
    
            

}</script>

可以在 onload 后,先用 createEvent 创建模拟事件,再用 dispatchEvent 触发就可以了


发表评论

电子邮件地址不会被公开。 必填项已用*标注