我正在使用C#.NET页面中的以下代码生成JavaScript警报:
Response.Write("");
它显示一个警告框,标题标题为"来自网页的消息".
是否可以修改标题?
叹气......不,你不能.
它具有安全/反网络钓鱼功能.
不,这是不可能的.您可以使用自定义JavaScript警告框.
使用jQuery找到了一个很好的
jQuery警报对话框(警报,确认和提示替换)
您可以在IE中执行此操作:
(虽然,我真的希望你不能.)
覆盖javascript window.alert()函数.
window.alert = function(title, message){ var myElementToShow = document.getElementById("someElementId"); myElementToShow.innerHTML = title + "" + message; }
有了这个,你可以创建自己的alert()
功能.创建一个新的'酷'外观对话框(来自一些div元素).
测试使用chrome和webkit,不确定其他人.
我发现这个Sweetalert用于自定义标题框javascript.
例如
swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "Yes, delete it!", closeOnConfirm: false }, function(){ swal("Deleted!", "Your imaginary file has been deleted.", "success"); });