将dymatic数据添加到phonegap插件中

时间:2015-06-18 01:09:17

标签: javascript android jquery cordova phonegap-plugins

我试图动态地将数据添加到phonegap插件

<a href="#" onclick="window.plugins.socialsharing.share(
   null, 
   null, 
   'document.getElementById('setquote').innerHTML;', 
   null
)">

我尝试使用此document.getElementById('setquote').innerHTML;将数据导入插件但没有运气。

1 个答案:

答案 0 :(得分:0)

我认为你不需要引号:

<a href="#" onclick="window.plugins.socialsharing.share(
   null, 
   null, 
   document.getElementById('setquote').innerHTML,  <- remove quotes here
   null
)">

当你在引号中包含该行时,你只是传递一个字符串,我想你想传递实际的内部html