我正在尝试在jQuery中创建一个具有关闭按钮的烤面包,并且仅在用户按下关闭按钮时关闭。到目前为止,我已经通过研究达到了以下目标,但是它会自动关闭,这是我不希望的。
$.toast({
heading: 'Information',
text: 'Loaders are enabled by default. Use `loader`, `loaderBg` to change the default behavior',
icon: 'info',
loader: true, // Change it to false to disable loader
loaderBg: '#9EC600' // To change the background
})
此外,当用户按下close时,我想调用一个向用户显示详细信息的函数。
类似
IF closed is pressed THEN
CALL function1
如果它们更容易,我也愿意使用插件或库-任何建议都很好。