本文介绍了如何在ASP Web表单中添加jquery签名板功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我被要求在ASP.NET应用程序上添加签名板功能。我无法显示签名板。该页面是带有母版页的ASPX Web窗体。可以找出下面代码的哪个或哪些部分放在主页或内容页面中?任何帮助将不胜感激,谢谢。 <!DOCTYPE html> < meta charset =utf-8> < title>签名垫 < pre lang =HTML>& lt; pre lang =Javascript>< / pre>< ; / pre> 身体{ 字体:正常100.01%/ 1.375Helvetica Neue,Helvetica,Arial,sans-serif; } 打印你的名字。 写下您的签名。I've been requested to add a signature pad function on to a ASP.NET application. I can't get the signature pad to display. The page is an ASPX Web Form with a Master Page. Can figure out where or what part of code below to place in Master or Content page? Any help would be appreciated and Thanks.<!DOCTYPE html> <meta charset="utf-8"> <title>Signature Pad <pre lang="HTML">&lt;pre lang="Javascript"></pre></pre> body { font: normal 100.01%/1.375 "Helvetica Neue",Helvetica,Arial,sans-serif; } Print your name. Write your signature. < ; - 画画 - > 清除 < canvas class =padwidth =198height =50> <canvas class="pad" width="198" height="50"> 保存签名 $(document).ready(function(){ $('。sigPad')。signaturePad({drawOnly:true,drawBezierCurves:true}); }); 我尝试了什么: 我已经能够显示按钮和文本框但是不会显示签名板画布。 Save Signature $(document).ready(function () { $('.sigPad').signaturePad({ drawOnly: true, drawBezierCurves: true }); });What I have tried:I've been able to display the buttons and text box but the signature pad canvas does not display.推荐答案(document).ready(function(){(document).ready(function () {('。sigPad')。signaturePad({drawOnly: true,drawBezierCurves:true}); }); 我尝试了什么: 我能够显示按钮和文本框但签名板画布不显示。('.sigPad').signaturePad({ drawOnly: true, drawBezierCurves: true }); });What I have tried:I've been able to display the buttons and text box but the signature pad canvas does not display. 这篇关于如何在ASP Web表单中添加jquery签名板功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-09 03:21