我想知道如何在这部分只允许使用数字。
{
title: "Dollar Amount?",
text: "How much is your Dollar Question worth?",
inputPlaceholder: "Enter Amount"
}
我正在使用Sweetalert插件。它已经困扰了我好几天而且我刚刚接近前端,我真的是一个完整的后端人。
function showDollarQuestion() {
if (inUserId === "" || inUserId === null) {
socket.emit('stud notif', myuserid,myuserid,"noroom");
}else{
swal.setDefaults({
input: 'text',
confirmButtonText: 'Next →',
showCancelButton: true,
animation: false,
progressSteps: ['1', '2']
})
var steps = [
{
title: "Dollar Question?",
text: "Ask a question to your influencer",
inputPlaceholder: "Write your Dollar Question"
},
{
title: "Dollar Amount?",
text: "How much is your Dollar Question worth?",
inputPlaceholder: "Enter Amount"
}
]
swal.queue(steps).then(function (result) {
if (result[1] === "" || result[1] === "") {
swal.resetDefaults()
swal({
title: 'Empty Field!',
html:
'Dollar Question is required<br />Dollar Amount is required',
confirmButtonText: 'Try Again',
showCancelButton: false
})
}else if(){
}else{
swal.resetDefaults()
swal({
title: 'All done!',
html:
'Your Dollar Question is '+JSON.stringify(result[0]).replace(/\"/g, "")+
'<br /> Dollar Question worth is '+JSON.stringify(result[1]).replace(/\"/g, ""),
confirmButtonText: 'Great, your question has been successfully submitted to your influencer',
showCancelButton: false
})
socket.emit('dollar quest', JSON.stringify(result[0]).replace(/\"/g, ""), JSON.stringify(result[1]).replace(/\"/g, ""), inUserId, myuserid, 'dquest');
}
}, function () {
swal.resetDefaults()
})
}
}
到目前为止,这是我得到的所有代码。我无法找到关于这个Sweetalert事情的任何教程。在此先感谢你们
答案 0 :(得分:0)
首先,您使用的是SweetAlert 2 ,而不是SweetAlert。这是两个不同的项目,在API方面略有不同。
要创建数字字段,您应将input
参数设置为'number'
:
swal({
text: 'How much is your Dollar Question worth?',
input: 'number'
}).then(function(result) {
if (result.value) {
const amount = result.value
swal(amount + ' USD')
}
})
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@7"></script>
有关input
参数的详细信息,请参阅官方文档页面:https://sweetalert2.github.io/
答案 1 :(得分:0)
但是您可以更改书店,或者您已经习惯了,可以使用
$('.showSweetAlert').children('fieldset').children('input').attr('type', 'number');
答案 2 :(得分:0)
您可以使用“文本”,然后在收到响应时将其格式化为数字(双精度)。
'number' 不允许使用逗号/点(仅限数字)并且会显示警告直到您将其删除