1. 安装greasemonkey 插件
2. 访问医改意见反馈网页:http://www.ndrc.gov.cn/yg
3. 添加下列用户脚本:
// ==UserScript==
// @name new
// @namespace my
// @include *
function On_Submit()
{
if(check(document.addForm))
{
window.open('','check_method','width=418,height=200');
document.addForm.submit();
}
}
// ==/UserScript==
第2个脚本:
4. 刷新页面,在出现输入校验码时,用tab键选择输入框输入,不要用鼠标点选,输入完毕后,用鼠标点提交即可。(抱歉我第一次用greasemonkey,javascript也忘了怎么用,所以大家将就用吧)
// ==UserScript==
// @name sum
// @namespace http://2ban
// @include http://www.ndrc.gov.cn/ygyj/vcode.jsp
document.addEventListener('click', function(event) {
// event.target is the element that was clicked
// do whatever you want here
document.forms[0].submit();
// if you want to prevent the default click action
// (such as following a link), use these two commands:
event.stopPropagation();
event.preventDefault();
}, true);
// ==/UserScript==
总之,我希望使用firefox的用户也有参与公共事物、发表个人意见的权力和渠道。
没有评论:
发表评论