如何在ui中获取值:重复javascript

时间:2016-12-29 14:22:51

标签: javascript jsf

我想得到一个ui的值:通过javascript在facebook上重复发帖。错误是Uncaught ReferenceError:某些未定义为HTMLAnchorElement.onclick(index.xhtml:1)

这是我的jsf代码

<ui:repeat var="leyes" value="#{votarControlador.lstLey}">                                
    <h:outputLabel value="  #{leyes.titulo}"/>
    <h:link  onclick="shareLey(#{leyes.titulo})" value="Post Facebook" />                                                                                                   
</ui:repeat>   

这是我在javascript中的代码:

function shareLey(ley_) 
{
    FB.ui(
    {
        method: 'feed',
        link: 'https://www.youtube.com/watch?v=cx_rqWj50IA',
        name: ley_,
        description: 'Si tu ley es la más votada, me comprometo a Gestionar su Desarrollo y Cumplimiento',
        caption: 'Sabías que tú puedes crear una LEY',
        action_type: 'og.likes',
        action_properties: JSON.stringify({
            object: 'https://www.youtube.com/watch?v=cx_rqWj50IA'
        })
    },
}

0 个答案:

没有答案