我的主要 html 中有以下内容:
jQuery(document).ready(function(){
jQuery('body').flvplay(songlist, {something});});
我想将它移动到一个单独的 JS 文件并从主 html 进行函数调用。我使用以下内容创建了新的 JS:
play()
{
jQuery('body').flvplay(songlist, {something});
}
最后,在包含新的 JS 文件后,我从主 html 中调用了 play 函数:
<script type="text/javascript">
play();
</script>
由于某种原因,这不起作用。以上有什么问题吗?感谢您的帮助。