我正在运行this script,用户可以放置其签名。
但是我无法成功将生成的svg
信息复制到文本字段,因此我可以使用此html表单将其发送到数据库。
<div id="signature"></div>
<textarea id="signature_svg" rows="5" cols="50"></textarea>
。
<script src="vendor/jsignature/jSignature.min.js"></script>
<script>
$(document).ready(function() {
var $sigdiv = $("#signature")
$sigdiv.jSignature() // inits the jSignature widget.
// after some doodling...
$sigdiv.jSignature("reset") // clears the canvas and rerenders the decor on it.
// Getting signature as SVG and rendering the SVG within the browser.
// (!!! inline SVG rendering from IMG element does not work in all browsers !!!)
// this export plugin returns an array of [mimetype, base64-encoded string of SVG of the signature strokes]
var datapair = $sigdiv.jSignature("getData", "svgbase64")
var i = new Image()
i.src = "data:" + datapair[0] + "," + datapair[1]
$(i).appendTo($("#signature_svg")) // append the image (SVG) to DOM.
$("#signature").bind('change', function(e){ document.getElementById('signature_svg').value; })
})
</script>
我没有在控制台中发现任何错误。
有任何建议如何将signature
的信息保存到signature_svg
中,以便我将带有此信息的表格发送出去?
答案 0 :(得分:0)
解决方案正在将部分代码移至JS
事件。
<script>
$(document).ready(function() {
var $sigdiv = $("#signature")
$sigdiv.jSignature() // inits the jSignature widget.
// after some doodling...
$sigdiv.jSignature("reset") // clears the canvas and rerenders the decor on it.
})
</script>
<script>
function copy()
{
// signature
var $sigdiv = $("#signature")
var datapair = $sigdiv.jSignature("getData", "svgbase64")
document.getElementById("signature_svg").value = datapair[1];
}
</script>