我有以下问题。每次用户单击锚点时,我都需要设置一个 div 的宽度。此 div 的宽度应取自另一个 div。如何做到这一点?
以下代码不起作用(请记住,该脚本包含在 PHP echo 中):
jQuery(".geother").click(function(){
var pos=$("p.second").width() + "px";
jQuery("#headerRightContactPhone span").css(\'width\', pos);
}
编辑(我还需要另一件事,我想应用到左侧的“geother”div CSS,这将是 pos 宽度+230px 的负值):
jQuery(".geother").click(function(){
var pos = $("p.second").width(); // don't need to use 'px'
jQuery("#headerRightContactPhone span").css('width', pos); // don't need escaping
$(this).css('left', ((230+pos)*-1) );
});