javascript - clipboardData paste html format mobile web in iOS -
clipboarddata in javascript, used getdata('text/html').
const clipboarddata = e.clipboarddata || window.clipboarddata; const pasteddata = clipboarddata.getdata('text/html') || clipboarddata.getdata('text');
this source activates in pc/aos platform. not working on ios.
when pasting clipboarddata, want load html specification on ios show this.
first picture: mobile web safari load format in ios second picture: pc web chrome load format
i try mobile chrome, safari, , on.. same too.
Comments
Post a Comment