hrefの関数を呼び出す関数があり、hrefリンク関数をパラメータiで自動トリガーしてJavaScriptに渡す方法があります。私は以下のコードを含んでいます。自動トリガーリストhrefリンクを1つずつ
<html>
<head>
//Add jwplayer script
</head>
<body>
<div id='VideoPlayer'>Loading the player ...</div>
<ul id="myList">
<li><a href="#" onclick="show_alert('sample video1','image1')">Test</a>
<li><a href="#" onclick="show_alert('sample video2','image2')">Test1</a>
</ul>
<script type="text/javascript">
function show_alert(my_string,s)
{
var playerInstance = jwplayer('VideoPlayer');
playerInstance.setup({
file: my_string,
image: s,
title: 'My Cool Video',
primary: 'html5',
width: 640,
height: 480
});
}
[].forEach.bind(document.querySelectorAll("#myList li a"),function(itm){
itm.click();
})(); </script></body></html>
てみ 'document.querySelectorAll( '#のはmyListのA')[0のような単純なものかもしれません] .click() '。 –