調用的「Sweet Alert」在我的應用程序中,我發佈了javascript後臺提示Sweet Alerts來自VB.Net代碼,在各種頁面加載和事件中。我可以得到基本的警告射擊沒有問題如下圖所示:Javascript alert提示從VB.Net調用
Dim script As String = String.Format("swal('Welcome , " + Username + "');")
ScriptManager.RegisterClientScriptBlock(Page, GetType(System.Web.UI.Page), "redirect", script, True)
還有其他可用的警報,其中涉及添加對象警報的引號內:
swal({
title: "Sweet!",
text: "Here's a custom image.",
imageUrl: "images/thumbs-up.jpg"
});
所以我的問題是,當我想在我後面的代碼使用,即時通訊有問題知道去哪裏在適當的地方加上引號,對象似乎導致語法錯誤
Dim script As String = String.Formatswal({ title: "Sweet!", text: "Here's a custom image.", imageUrl: "images/thumbs-up.jpg" });
ScriptManager.RegisterClientScriptBlock(Page, GetType(System.Web.UI.Page), "redirect", script, True)
非常感謝您的幫助,但我已經嘗試了這兩種技術,並且都有編譯錯誤「輸入字符串格式不正確」。 – Johnn5er
現在嘗試沒有String.Format ... –