你好我需要确认消息,其中url嵌入列表样式,并在关闭标签/浏览器时显示一个图像。在代码中它给出确认消息但不提供图像和链接。 &安培;我也不知道如何展示这一点。谁能帮帮我吗。 这是我想要执行此操作的代码,是否可以在确认框中执行此操作。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<a href="../sum-of-textboxes.php" onclick="prevent()">Sum of textboxes.</a>
<ul id="listtype" style="display:none;">
<li>abc</li>
<li>xyz</li>
</ul>
<script language="JavaScript">
window.onbeforeunload = function () {
return 'Do you need help?';
/*var list="<ul><li>"+ abc + "</li></ul>";
var list=document.getElementById("listtype");
return 'list';*/
}
function prevent() {
window.onbeforeunload = function () { };
};
答案 0 :(得分:-1)
不幸的是,您只能显示原始短信,没有标签和样式。此外,firefox只显示它自己的默认消息(HTML onbeforeunload Event Attribute)