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.
我需要在 alertify 对话框中添加更多输入元素。最好的方法是什么?
我确实在文本中添加了额外的输入
var text = '<input id="extra-field" />';
然后通过 jQuery 获取值
alertify.confirm(text, function(e){ if(e){ var extra = $('#extra-field').val(); ... });
对我来说不是问题,但组件的布局不同。无论如何,我希望它会对你有所帮助。祝你今天过得愉快。