‘壹’ 用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 )