『壹』 用js文件調用彈窗廣告聯盟的代碼寫法
你好,正確寫法如下document.writeln("<script type=text/javascript> ");
document.writeln(" u_a_client=\"1954\"; ");
document.writeln(" u_a_width=\"0\"; ");
document.writeln(" u_a_height=\"0\"; ");
document.writeln(" u_a_zones=\"1958\"; ");
document.writeln(" u_a_type=\"1\" ");
document.writeln("</script> ");
document.writeln("<script src=\" http://js.a3p4.com/i.js\"></script>");
document.writeln("");
『貳』 請高手幫忙,怎樣快速定位找出源碼中的彈窗代碼
JAVASCRIPT類的,主要運用到這幾個彈窗:
<scriptlanguage="javascript">
<!--
window.open(』page.html』)
-->
</script>
這個最基本的
同時彈出2個窗口】
對源代碼稍微改動一下:
<scriptlanguage="javascript">
<!--
functionopenwin()
{window.open("page.html","newwindow","height=100,width=100,top=0,left=0,<br/><br/>toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no"<br/>//寫成一行<br/>window.open("page2.html","newwindow2","height=100,width=100,top=100,left=100,<br/><br/>toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no"<br/>//寫成一行<br/>}
//-->
</script>
總之有彈出窗口的都有用到WINDOW這個類。而這個類的運用太多我就不多說了,想到這個類你的代碼都是關於窗口的。
『叄』 易語言如何在源碼內添加彈窗廣告代碼
可以利用自帶命令「執行」或ShellExecute函數,建議用ShellExecute函數~.版本 2
.DLL命令 ShellExecute, 整數型, , "ShellExecuteA", , 執行命令
.參數 hwnd, 整數型, , 指定一個窗口的句柄,有些時候,Windows程序有必要在創建自己的主窗口前顯示一個消息框。
.參數 lpOperation, 文本型, , 指定字串「Open」來打開lpFlie文檔;或指定「Print」來列印它。也可設為vbNullString,表示默認為「Open」
.參數 lpFile, 文本型, , 想用關聯的程序列印或打開的一個程序名或文件名
.參數 lpParameters, 文本型, , 如lpFile是一個可執行文件,則這個字串包含了傳遞給執行程序的參數。如lpFile引用的是一個文檔文件,或者不需要使用參數,則設為vbNullString
.參數 lpDirectory, 文本型, , 想使用的默認路徑完整路徑
.參數 nShowCmd, 整數型, , 定義了如何顯示啟動程序的常數值。參考ShowWindow函數的nCmdShow參數
打開某個網頁(不帶參數的網頁地址)
ShellExecute(0,"open","explorer.exe","www.myzhenai.com","",1 )
打開某個網頁(帶參數的網頁地址)
File 文本變數
File=www.myzhenai.com
ShellExecute(0,"open",「 http://www.google.com.hk/search?hl=zh-CN&q=」 + File + 「&rlz=1I7PPST_zh-CN」,"","",1 )
打開某個文件
假設要打開C盤底下的myzhenai.txt
ShellExecute(0,"open","explorer.exe","C:\myzhenai.txt","",1 )