gpt4 book ai didi

jquery jgrowl 位置

转载 作者:行者123 更新时间:2023-12-03 22:16:45 35 4
gpt4 key购买 nike

如果在 jgrowl.css 中位置更改为“center”,我如何将其覆盖为默认值,即“top-right”

$.jGrowl(data, { 
header: 'data',
animateOpen: { height: 'show'},
life: 10000,
position:'top-right'
});

目前,上面的位置暂时不起作用

谢谢..

最佳答案

根据jGrowl Options documentation对于位置选项

Designates a class which is applied to the jGrowl container and controls it's position on the screen. By Default there are five options available, top-left, top-right, bottom-left, bottom-right, center. This must be changed in the defaults before the startup method is called.

为此,您将拥有类似的内容

    <script type="text/javascript">
$.jGrowl.defaults.position = 'top-right';
</script>

然后您就可以按照上面的方法调用电话,并且省略位置设置。从 jGrowl 文档来看,您必须默认设置位置,并且我的快速测试证实,在 $.jGrowl(...) 调用中设置位置没有效果。

希望有帮助

关于jquery jgrowl 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2289365/

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