gpt4 book ai didi

jQuery:如何创建元素然后将其包装在另一个现有元素周围?

转载 作者:行者123 更新时间:2023-12-01 00:50:04 25 4
gpt4 key购买 nike

所以我知道如何使用 .wrap.wrapInner.wrapAll 但我想知道如何使用引入的快速创建语法在jQuery 1.4中和wrap函数一起使用。

基本上我希望能够使用

var targetUl = $(this), // would be populated by script
maxWidth = 1400; // would be populated by script

$('<div />', {
'id':'wrap',
'css': {
'width': maxWidth,
'overflow':'hidden'
}
}).wrapAround(targetUl);

有点像.appendTo方法,但用于包装东西......

这可以做到吗?

谢谢。

最佳答案

targetUl.wrap(
$('<div />', {
'id':'wrap',
'css': {
'width': maxWidth,
'overflow':'hidden'
}
})
);

关于jQuery:如何创建元素然后将其包装在另一个现有元素周围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4190946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com