我有一个复合组件,为了设置其中一个属性,我必须调用一个进行计算的Js函数。我怎么能这样做?
JS功能
function getContWidth() {
var width = ($("#content_container_wide").css("width"));
return width;
};
Comp Component
<comp:carouselComponent id="carousel" title="Carousel images"
images="#{carouselBean.imageList}"
height="170" numToDisplay="3"
width="#{document.write(getContWidth())}" />