Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够加载一个页面,一旦添加了所有内容,看看它有多高,并将其作为隐藏参数包含在内,以便稍后获取。有没有办法做到这一点?
[注意] 澄清一下,我必须在后面执行这个 n 代码,因为它必须通过 webrequest 对象检索。
肯定的事。使用 jQuery:
$('#item').data('height', $('#item').height() );
#item的高度(在盒子模型的意义上,不包括填充)将由$().data存储为自身的属性,可用于以后的 JavaScript。
#item