我正在使用颜色框来显示 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
。
可能吗?