0

我正在尝试使用 Yii 为我的项目实现全屏...我从https://github.com/martinaglv/jQuery-FullScreen下载了全屏脚本

但是,当我尝试按照教程中提到的那样实现它时,它会给出一个消息函数 fullscreen() 而不是一个函数。但同样适用于简单的 HTML 页面。

<div id="MyFullScreen">
This is a test
</div>
<div id="fsButton">Click me</div>

$(function(){
    $('#fsButton').click(function(e){
       // Use the plugin
        $('#MyFullScreen').fullScreen();
        e.preventDefault();
    });
});

请帮忙。不知道为什么它不起作用...

提前致谢

4

1 回答 1

1

可能是一些冲突。尝试封装

jQuery.noConflict();
jQuery(document).ready(function($){ 
  $('#fsButton').click(function(e){
    $('#MyFullScreen').fullScreen();
    e.preventDefault();
  }); 
});
于 2013-06-14T09:36:44.927 回答