我在这里需要帮助 我在 js 中使用它
$('#popup').sfPopup({
text: 'Would You like to close this popup?',
buttons: ['Yes', 'No'],
defaultFocus: 1, // index of default focused button. this indicates array index of 'buttons' option (zero-based)
callback: function (selectedIndex) {
alert('selected button index: ' + selectedIndex);
}
});
$('#popup').sfPopup('show');
};
这在 html 中
<div id='popup'></div>
我在这里找到了这个例子
但它不起作用我错过了什么?