所以我想在我的網站上創建鏈接以鏈接到script.js文件中的數組,這是我創建的內容滑塊所包含的JavaScript的位置。製作一個HTML鏈接到JS滑塊的JavaScript數組
的想法是從點擊這個網站的鏈接:
<div id="slider">
<h2 id="sliderHeader">Social Determinants of Health</h2>
<p>______________________</p>
<p id="sliderPara">In terms of health - good quality health care is a determinant of health, and access, affordability, and acceptability of health are all socially determined. But most social determinants of health lie outside the health care system.</p>
<a href="#"><input class="readmore_button" type="submit" value="Read more" /></a>
</div>
<div class="slider_menu">
<ul>
<li><a href="#">Social Determinants of Health</a></li>
<li><span style="color:#fff;">|</span></li>
<li><a href="#">Monitoring Progress</a></li>
<li><span style="color:#fff;">|</span></li>
<li><a href="#">What Works</a></li>
<li><span style="color:#fff;">|</span></li>
<li><a href="#">Making it Happen</a></li>
</ul>
</div>
要鏈接到我的陣列,它是一個獨立的滑塊之一。 如下圖所示:
var headArray= ['Social Determinants of Health',
'Monitoring Progress',
'What Works',
'Making it Happen'];
這甚至可能嗎?如果沒有解決方法?
p.s.這是我正在處理的網站http://hghazni.com/ihe/
乾杯!
不能單純使用'onclick'的跨度,並通過相關的數組元素的指數? – TheJim01
嗨吉姆,我與你在onclick解決方案,我正在玩,但不確定關於傳遞相關數組索引的評論。我要說實話,我對JavaScript並不擅長,所以我在學習很多東西,因爲我要走很長的路。 – Harry
我應該爲每個滑塊創建一個新功能,只需將它們與onclick鏈接? – Harry