• 我在html文件中包含以下内容:

a)http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
b)来自https://github.com/brinley/jSignature/blob/master/libs/jSignature.min.js的JSignature.js

  • 使用WebView控件显示此Html文件 .

问题:

1)我无法使用WebView控件在WinRT平板电脑(表面)上的框中绘制我的签名来显示html文件

2)拥有上面的库(a和b),这可以在平板电脑上工作,如ipad,Android?

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
<script type="text/javascript" src="../Scripts/jSignature.js">   
 <script type="text/javascript">

        $(document).ready(function (){
        $("#divSignature").jSignature({width:400, height:140, mousedown:function(){}});
        });

 </script>