SweetAlert2 - 儲存輸入值到文字欄位後傳回的是"
P粉445750942
P粉445750942 2023-09-16 19:03:37
0
1
370

i'm trying to make pop-up window when my form loads. and when you enter ID number in the pop-up window, it stores in the text-field in the form. enter image description here - this is where u put the ID Number. enter image description here - and this is where i want the value to be saved. I'm using AgilePoint - and inside i insert js code and sweetalert2. this is the code i'm trying to do:

eformEvents.onFormLoadComplete = function()

#{Swal.fire({ //rtl:true

#title: 'title', html: '

hello

', icon:info, input:'text', inputLabel: 'Enter ID'

#})

.then(inputValue) => {document.getElementById("Eid").Value = inputValue}

Swal.fire('Success')

#})}

#

我正在嘗試在我的表單載入時彈出視窗。 當您在彈出視窗中輸入ID號碼時,它將儲存在表單中的文字欄位中。 輸入圖像說明 - 這是您放置ID號碼的位置。 輸入圖像說明 - 這是我想要保存值的位置。 我正在使用AgilePoint - 在其中插入js程式碼和sweetalert2。 這是我嘗試做的程式碼:

eformEvents.onFormLoadComplete = function()

#{Swal.fire({ //rtl:true

#title: 'title', html: '

hello

', icon:info, input:'text', inputLabel: 'Enter ID'

#})

.then(inputValue) => {document.getElementById("Eid").Value = inputValue}

Swal.fire('Success')

#})}

#
P粉445750942
P粉445750942

全部回覆 (1)
P粉211273535

SweetAlert的then區塊將會接收一個物件。您需要從該物件中選擇value屬性。

嘗試像下面這樣的東西。

Swal.fire({ title: '标题', html: '

你好

', input:'text', inputLabel: '输入ID', }).then(({value}) => { document.getElementById("Eid").Value = value Swal.fire('成功') })
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板
    關於我們 免責聲明 Sitemap
    PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!