我正在使用colorbox来显示html内容错误。
我需要在链接点击位置显示它。有没有办法将它的位置设置为接近该链接的位置?
CODE
<script type="text/javascript">
$(document).ready(function(){
setColorbox();
});
//This will set colorbox ids.
function setColorbox(){
var a = $('#requestText').val();
if($("#request").length){
$("#request").colorbox({html:a, maxHeight:"65%",opacity:0.5});
}
}
和
<div><b>Request Text :</b></div>
<h:panelGroup style="dispaly:block" rendered="#{refillRenewalRequestBackingBean.str2!=''}">
<a href="#" id="request">View-Text</a>
<input type="hidden" id="requestText" value="<h:outputText value="#{refillRenewalRequestBackingBean.str2}"/>" />
我正在使用这种脚本。
现在,我需要在点击href
view-Text
的同一位置显示彩色框。
有可能吗?