5

我需要tap在一些选择器上设置触发器。我正在使用 jQuery Mobile 和这个功能,那么有什么不对吗?

window.onload = load;

function load() {
  $('.togglePlay').trigger('tap');
}
4

5 回答 5

1

查看点击点击触摸事件。

// The tap event won't be emitted along with the taphold event
$.event.special.tap.emitTapOnTaphold = false;

$("#fire").on("taphold", function() {
  $(this).addClass("colorize");
});
$("#banana").on("tap", function() {
  $(this).hide();
});
body {
  text-align: center;
}

span {
  font-size: 3rem;
}

span:hover {
  cursor: pointer;
}

.colorize {
  color: transparent;
  text-shadow: 0 0 0 red;
}
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

<h3>If you tap and hold me for 750 milliseconds, I will fill up with color.</h3>
<span id="fire"></span>
<hr />
<h3>If you tap me quick, I will dispear.</h3>
<span id="banana"></span>

于 2020-02-11T02:41:27.243 回答
0

尝试:

$(document).ready(function(){
    $('.togglePlay').trigger('click');
});
于 2013-06-24T08:04:53.950 回答
-1

假设加载页面有一个包含它的 divdata-role=page并且它idmypage,您可以使用该pageinit事件来启动clickon ,'.togglePlay'如下所示:

$(document).on("pageinit", "#mypage", function () {
  $('.togglePlay').trigger('click');
});

参考

于 2013-06-24T11:41:12.327 回答
-1

我使用 jQuery tap() 方法。

$('.togglePlay').tap();

http://api.jquerymobile.com/tap/

这对我有用:)

于 2015-01-14T11:57:43.847 回答
-2

您应该能够设置 autoplay=true 或其他一些设置...

<video controls autoplay>
    <source src="movie.mp4" type="video/mp4">
    <source src="movie.ogg" type="video/ogg">
    Your browser does not support the video tag.
</video> 

示例来自:http ://www.w3schools.com/tags/att_video_autoplay.asp

不使用js

于 2015-01-09T14:30:56.857 回答