- 我在html文件中包含以下内容:
a)http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
b)JSignature.js来自
https://github.com/brinley/jSignature/blob/master/libs/jSignature.min.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>