我想在彈出的的提示框中寫入字符串,要如何做
比如
dim str as string="123" //這個在程序中是變的
我需要在提示框中顯示這個str ,要如何寫
Response.Write("<script type='text/javascript'>alert('123')</script>")
這種寫法在alert中只能直接寫內容,不能寫定義的字符串
Response.Write("<script type='text/javascript'>alert('" + 你的字符串變量 +"')</script>");