我试图动态地将数据添加到phonegap插件
<a href="#" onclick="window.plugins.socialsharing.share(
null,
null,
'document.getElementById('setquote').innerHTML;',
null
)">
我尝试使用此document.getElementById('setquote').innerHTML;
将数据导入插件但没有运气。
答案 0 :(得分:0)
我认为你不需要引号:
<a href="#" onclick="window.plugins.socialsharing.share(
null,
null,
document.getElementById('setquote').innerHTML, <- remove quotes here
null
)">
当你在引号中包含该行时,你只是传递一个字符串,我想你想传递实际的内部html