我将如何仅更改此 HTML:
<div class="name">President Speech</div>
那是在这个div里面:
<div class="videobox fl showsearchvideo" id="videoBox7">
<div class="videothumb">
<img src="http://brightcove04.o.brightcove.com/xxxxx/xxxx_xxxxx_xx-xxxxxx.jpg?pubId=xxxxxxx">
</div>
<div class="name">President Speech</div>
</div>
我试过了:
$('#videoBox7 .name').html('President Speech TEST!');
但这似乎不起作用?
更新
在视频 div 运行 JS 以填充它正在寻找的 HTML 之后,它似乎没有触发。
<script type="text/javascript">
$(document).ready(function() {
$('#videoBox7 .name').html('President Speech TEST!');
});
</script>
我已将填充视频的 JS 上传到http://pastebin.com/DNBPNQUQ
更新 2
通过将brightstar js$('#videoBox7 .name').html('President Speech TEST!');
的函数放在里面找到了一种方法来实现这一点。onPlaylistLoad