0

我试图在我的网页上安装网络摄像头。

我的jQuery代码:

$("#camera").webcam({  
            width: 320,  
            height: 240,  
            mode: "callback",  
            swffile: "webcam/jscam.swf",  
    });

我的网络摄像头正文代码:

<div id="camera"></div>

我正在使用这个插件:
http ://www.xarg.org/project/jquery-webcam-plugin/

但在我的页面上我什么也没看到。它是空的。
有人知道我缺少什么来使网络摄像头工作。

谢谢。

4

4 回答 4

0
It might be throwing error in console please check it i.e jQuery is undefined.
So include js file in your html page.

eg:-

<html>
  <head>
     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
   <script type="text/javascript" src="jquery.webcam.js"></script>
 </head>
  <body>
<div id="camera"></div>
<script type="text/javascript">
$(document).ready(function(){
    $("#camera").webcam({
    width: 320,
    height: 240,
    mode: "callback",
    swffile: "jscam_canvas_only.swf",
    onTick: function() {},
    onSave: function() {},
    onCapture: function() {},
    debug: function() {},
    onLoad: function() {}
});

});
</script>
  </body>
</html>
于 2013-01-09T14:14:48.590 回答
0

我从这里找到了这个插件,如果它对你没有帮助,你可以随时加入他们开发:)

于 2012-05-16T18:20:37.963 回答
0

一个猜测,但是由于您使用的是回调模式,您是否尝试像示例中那样添加回调配置?

    onTick: function() {},
    onSave: function() {},
    onCapture: function() {},
    debug: function() {},
    onLoad: function() {}

也有什么错误吗?你检查过萤火虫吗?


1/ 确保您加载了 JS 库。

2/ 尝试将它们放入 document.ready :

$(document).ready(function(){
    // Your code here
});
于 2012-05-16T08:43:54.510 回答
0

您应该尝试使用以下内容更新您的 web.xml 文件:

<servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.swf</url-pattern>
    </servlet-mapping>  
于 2013-01-16T19:14:39.277 回答