社交分享插件 phonegap 分享价值

Social sharing plugin phonegap Share value

我想分享来自文本区域输入值的文本。

这是我的代码:

<textarea type="text" id="source"   tabindex="1" name="source" placeholder="Text to be translated" ></textarea>             

<textarea id="results_body" onfocus="ok=1" cols="100" rows="6" style="height:10%;" ></textarea>

<button onclick="window.plugins.socialsharing.share('textarea value')>share only</button>

如果您只想将文本区域值设为当前 'textarea value' 的位置,您可以将其替换为

document.getElementById('source').value

share(document.getElementById('source').value)