我正在使用Jsignature捕获签名,并且我试图在创建后发布检索图像。
这是我用来抓取代码的代码jSignature('getData', 'base30')
然后我将它打印到隐藏的textarea,然后传到下一页。
<p>Signature:</p>
<script src="libs/jSignature.min.js"></script>
<div style="width:70%; margin:30px auto 0;"id="signature"></div>
<textarea style="display:none;"; rows="10" cols="50" id="test" name="signature"></textarea>
<p onclick="testing">Click Here</p>
<button id="export" type="submit">I accept the terms and conditions of this agreement.</button>
</form>
</div>
</div>
<script>
$(document).ready(function() {$("#signature").jSignature()})
$(document).ready(function(){
$("#export").click(function(){
var test = ($('#signature').jSignature('getData', 'base30'));
document.getElementById("test").innerHTML = test;
});
});
</script>
我在网站上发现了这个代码,我从
下载了项目<img src="<?php echo $src2 ?>">
所以我创建了一个变量,该变量从签名中获取代码 并且像它告诉我的那样在图像中调用它,但是我的图像被破坏并且它一直在控制台中给我一个403禁止的错误。
我想知道是否有人为什么不工作以及如何使其工作?