0
我正在使用JSignature,並試圖弄清楚當簽名獲得焦點並失去焦點時如何讓事件觸發。如何將事件綁定到JSignature焦點
綁定到更改事件的作品,但焦點,mousedown等不會觸發。如果有人知道如何做到這一點請
$('.jsig').jSignature({format:"image/jpeg"}) // inits the jSignature widget.
$(".jsig").jSignature.bind('mousedown', function(e) {
alert("mousedown");
});
$(".jsig").jSignature.bind('focus', function(e) {
alert("focus");
});
var j=$(".jsig").jSignature;
$(".jsig").bind('change', function(e) {
var d = $(e.target).jSignature("getData", "native");
document.getElementById('st').value=d.length+'.'+d[0].x.length;
});