我在保存像这样的值之后显示一个确认框
showalert("Quote has been saved successfully. Your Submission Number is:" + SaveValue );
现在我已经显示了savevalue粗体和下划线以及一些前色,如何应用(使用任何格式和html样式)
答案 0 :(得分:0)
我不知道如何改变风格,但这里是another alternative(用中文写的,但代码不是):
答案 1 :(得分:0)
您可以创建自己的javascript弹出提醒。
function ShowAlert(message) {
$('#popup').fadeIn(500);
$('#popupmessage').html(message);
};
您的HTML可能是这样的
<div id="popup" class="window">
<p id="popupmessage"></p>
</div>
您的代码可能是
ScriptManager.RegisterStartupScript(this, this.GetType(),"AlertScript","ShowAlert('Quote has been saved successfully. Your Submission Number is:<span style='text-decoration:underline;'>" + SaveValue + "</span>);"), true);
通过这种方式,您可以显示弹出消息并根据需要设置样式。
答案 2 :(得分:0)
function ShowAlert(message) {
$('#popup').fadeIn(500);
var newmessage = "<span style='color:red;font-weight:bold;text-decoration:underline'>" + message + "</span>";
$('#popupmessage').html(newmessage);
};