如何根據按下的鏈接更改模式的視頻和標題?根據觸發按鈕更改模態內容 - 標題和視頻
我想要改變基於按下的鏈接的src在這裏。
<iframe width="853" height="480" src=" Link's URL here " allowfullscreen></iframe>
標題在這裏。
<h4 class="modal-title" id="tutorial-modal"> Link's title here </h4>
這些按鈕是這樣寫的。
<a href="#" data-toggle="modal" data-target="#tutorial-modal" data-title=" The title for this link " data-video=" URL For the video for this link ">
我試圖把數據標題=「‘數據視頻=’‘並分別與這些替代模式的標題和IFRAME SRC =’」。謝謝!
我在我的頁面上有多個模態,所有不同,我只想改變基於點擊鏈接的tutorial-modal上的內容。
嘗試使用jQuery .attr()來獲取和設置你的元素屬性。 –