我想从 android phonegap 中获取选定的文本。当我选择一些文本时,我在 htmlpage 中有一些文本,我想将其取回并更改所选文本的颜色。但我无法选择文本。我的文本数据在 div 中。请帮助我。这是我的代码。
<body>
<div data-role="page">
<div data-role="content">
</div>
<div id="log">
</div>
</body>
<script>
$.ajax({
type:'GET',
url: 'http://10.0.2.2:7080/example/TranscriptVieww',
dataType:'text',
success: function(data){
$( "#log" ).append(data);
},
error: function(){
alert("There was an error loading the data.");
}
});
</script>