我正在玩一款在线游戏,它的按钮代码如下。 原因我想用按钮添加窗口是因为我必须在页面(我想点击的按钮)出现/加载之前浏览几个菜单。因此,在我实际点击该按钮之前,不必通过多次点击浏览菜单,我打算制作一个带有虚拟按钮的窗口,它将执行下面相同的代码。
<form accept-charset="utf-8" method="post" action="http://www.marketglory.com/account/fight/view_user/498">
<input type="hidden" value="startFight" name="action"></input>
<input type="hidden" value="trainer" name="username"></input>
<input class="nd_submit_big mt13" type="submit" value="Atack now" name="test"></input>
</form>
在上面的操作链接上,492的userID是常量。
我不知道从哪里开始。这是我的开始脚本:
// ==UserScript==
// @name MarketGold In a New Look
// @namespace http://userscripts.org/scripts/edit_src/180590
// @description This script is intended to enhance the playing experience with the strategy game at http://www.marketglory.com
// @author Wind™
// @include http://*.marketglory.com/*
// @exclude http://*.marketglory.com/forum/*
// @exclude http://forum.marketglory.com/*
// @grant GM_addStyle
// @version 1.0.1
// ==/UserScript==
/* Still no idea how to start this */
总结一下:
答案 0 :(得分:0)
//...
//@require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
//@require http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js
//...
$('<table/>').wrapInner($('input[value="Atack now"]').parent()).draggable().css({'padding':'20px', 'background':'black', 'opacity':'0.5'}).appendTo('body');