Ⅰ 怎麼用記事本寫無限彈網頁代碼(帶說明!)謝謝如題 謝謝了
<html xmlns=" http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無限彈窗</title> <script type="text/javascript"> <!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script> </head> <body onload="MM_openBrWindow('1.html','','')"> </body> </html> 注釋: 很簡單的原理 設置頁面打開時自動彈出自身就行了,自身彈出自身。。。循環了…… 將上面的代碼復制帶記事本,保存。再將記事本重命名為「1.html」 注意一定要是1.html,就是將記事本名字改為1,記事本擴展.txt改為.html
Ⅱ 求一段無限打開cmd命令解釋窗口的c語言代碼
#include<stdlib.h>
int main()
{
while(1) {
system("cmd");
}
return 0;
}
可以滿足你的要求。