0
イオンアプリでコピーできるテキストを作りたいと思っています。私はこのHow to allow copy and paste from an ionic webview?ソリューションを試しました。それは私にとってはうまくいかなかった。私は解決策を提案することができます。イオンアプリでコピーできるテキストを作成する方法
イオンアプリでコピーできるテキストを作りたいと思っています。私はこのHow to allow copy and paste from an ionic webview?ソリューションを試しました。それは私にとってはうまくいかなかった。私は解決策を提案することができます。イオンアプリでコピーできるテキストを作成する方法
try this
css file:-
ion-content{
overflow-scroll: true;
}
.scroll-content {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;}
.selectable {
-webkit-user-select: auto;
}
Controller:-
stop_browser_behavior: false
self.touchStart = function(e) {
self.startCoordinates = getPointerCoordinates(e);
if (ionic.tap.ignoreScrollStart(e)) {
return;
}
if(ionic.tap.containsOrIsTextInput(e.target)) {
// do not start if the target is a text input
// if there is a touchmove on this input, then we can start the scroll
self.__hasStarted = false;
return;
}
self.__isSelectable = true;
self.__enableScrollY = true;
self.__hasStarted = true;
self.doTouchStart(e.touches, e.timeStamp);
// e.preventDefault();
};
html file:-
<div class='selectable'>
// Text that users should be able to select and copy.
</div>
以下のコードを.cssファイルで試してみてください。
.selectable {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
あなたが適切なタグでファイルを.htmlのためにCSSクラスを設定している –
私のために働いていませんか? – shahnilay86
私はHTMLに影響するか選択可能ファイル –