我在Promise
回调处理程序中使用了click
。
我要访问被单击的节点。
但是当我在此this
回调中编写resolve
时,它不是元素,而是窗口对象。我该如何解决?
谢谢
$('#textroot').on('click', 'textarea', function(){
var promise = clipboard.writeText($(this).val());
promise.then(resolved, rejected);
function resolved(val) {
console.log('ok', $(this)[0]);
// Expected to see the reference of the textarea but not.
}
function rejected(){}
})