码迷,mamicode.com
首页 > Web开发 > 详细

xapges引用jquery

时间:2015-03-10 12:10:01      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:xpages jquery   domino jquery   lotus jquery   xpages插件   

   在domino的form的web的开发当中已经有说明怎样引用jquery,现在在xpages怎样引用jquery呢?


  一、在资源中引用jquery

技术分享

<xp:this.resources>
        <xp:script src="#{javascript:‘/.ibmxspres/domino/‘+@ReplaceSubstring(database.getFilePath(),‘\\‘,‘/‘)+‘/jquery-1.11.0.min.js‘}" clientSide="true"
        rendered="#{javascript:context.getUserAgent().isIE(0,8)}">
        </xp:script>

        <xp:script src="#{javascript:‘/.ibmxspres/domino/‘+@ReplaceSubstring(database.getFilePath(),‘\\‘,‘/‘)+‘/jquery-2.1.1.min.js‘}" clientSide="true"
        rendered="#{javascript:context.getUserAgent().isIE(9,11) || (!context.getUserAgent().isIE())}">
        </xp:script>
    </xp:this.resources>

 二、重新定义选择器,这样就可以方便选择jquery的方法选择xpages的元素了

//原文http://openntf.org/XSnippets.nsf/snippet.xsp?id=x-jquery-selector-for-xpages

<xp:scriptBlock>
        <xp:this.value><![CDATA[
        
        //function is called using x$("#{id:inputText1}", " parameters").
        //Updated 18 Feb 2012
        function x$(idTag, param){
           idTag=idTag.replace(/:/gi, "\\:")+(param ? param : "");
           return($("#"+idTag));
        }
        
        ]]></xp:this.value>
    </xp:scriptBlock>

技术分享


xapges引用jquery

标签:xpages jquery   domino jquery   lotus jquery   xpages插件   

原文地址:http://blog.csdn.net/weijia3624/article/details/44172729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!