我想在警報窗口中顯示HTML,就像iframe一樣..?我可以這樣做嗎...在類似iframe的提示窗口中顯示HTML?
<script>
alert("<html><body><h1>this is alert heading</h1></html></body>")
</script>
我該怎麼做這個..?
我想在警報窗口中顯示HTML,就像iframe一樣..?我可以這樣做嗎...在類似iframe的提示窗口中顯示HTML?
<script>
alert("<html><body><h1>this is alert heading</h1></html></body>")
</script>
我該怎麼做這個..?
不使用警報,我會使用彈出式菜單。我建議你使用像jQuery的對話框,看看http://jqueryui.com/demos/dialog/
如果你問如何顯示HTML標記本身的警告框,逃吧:
alert("\<html\>\<body\>\<h1\>this is alert heading\</h1\>\</html\>\</body\>")
如果你問如何使用HTML你不能格式化警告框。如其他答案所示,您需要創建一個模式對話框。
你不能,JavaScript警報不支持HTML。嘗試看看這個問題,看看答案,它使用你的想法。http://stackoverflow.com/questions/10665746/timer-with-interval-alert/10665865#10665865 – Tim
如果你把iframe放在裏面?不知道你是否可以.. – Andres
@Andres呃,不,你不能把一個iframe放在alert()中。 – ceejayoz