js页游脚本
❶ 如何在按键精灵中调用JS脚本
命令名称
RunJS 在当前网页中执行一段JS脚本
命令功能
在当前网页中执行一段JS脚本,支持获取返回值
命令参数
参数1:整数型,执行类型;0表示执行js不带返回值,1表示执行js并返回返回值,需要js中有return语句
参数2:字符串型,js脚本语句
返 回 值
字符串型,返回特征字符串
脚本例子
按键精灵8及以上语法
复制代码
Call Plugin.Web.RunJS(0,"alert('hello!');")
title=Plugin.Web.RunJS(1,"var t=document.title;return t;")
MessageBox title
Call Plugin.Web.RunJS(0,"alert('hello!');")
title=Plugin.Web.RunJS(1,"var t=document.title;return t;")
MessageBox title
脚本例子
按键精灵7及以下语法
复制代码
Plugin Web.RunJS(0,"alert('hello!');")
Plugin title=Web.RunJS(1,"var t=document.title;return t;")
MessageBox title
❷ 浏览器怎么添加js格式的脚本
Chrome浏览器
安装Tampermonkey扩展
到Greasy Fork等网站上添加脚本即可
Firefox浏览器
安装Greasemonkey扩展
到Greasy Fork等网站上添加脚本即可
❸ 编程实现使每打开的网页时自动执行一段js代码
【方式一】
<html>
<head>
<title></title>
<!-- begin:在每个页面的这个位置加入下面这行代码即可,仅此而已 -->
<script type="text/javascript">
onload =function(){alert("I love China");}
</script>
<!--end-->
</head>
<body>
</body>
</html>
【方式二】
当然,这种方式的重用性还不够好。如果哪天你想换了弹出的内容,可是假如你有100个页面怎么办?所以更好的方式:
1、在记事本里写:
onload =function(){alert("I love China");}
2、另存为showMyWords.js,放到和你的网页同一个文件夹下。
3、<script type="text/javascript" src="showMyWords.js"></script>将这句代码加到<head>标签内:
<html>
<head>
<title></title>
<script type="text/javascript" src="showMyWords.js"></script>
</head>
<body>
</body>
</html>
如此一来,以后你想更改弹出的内容,只需要将showMyWords.js里面的“I love China”改成新的内容,那么所有页面弹出的内容就统一了,这样重用性就高多了。