这是可能的书签网页与html按钮?
<button>Bookmark This page</button>
function onclickfunction(){
alert('Press Ctrl + D to bookmark this page');
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button onclick="onclickfunct
可能重复:
我使用的是Box2dJS库,它使用的是原型,因此我必须包括原型库才能工作。我没有在我的主脚本中使用任何原型代码,只有Box2d对象使用原型。我在脚本中使用JQuery,由于我包含了prototype,jQuery事件似乎没有触发。
以下是相关的JS代码:
$.noConflict();
jQuery(document).ready(function(){
init();
});
function init(){
//add event handler to surrounding DIV to monitor mouse move and keystrokes
jQue
我想让GreaseMonkey处理一个按钮点击。按钮的超文本标记语言是在GM_xmlhttprequest访问的perl CGI中生成的。处理点击的javascript在我的用户脚本中。
这是用户脚本。它会在网页顶部添加一个div,并通过AJAX将来自我的CGI的内容填充到该div中。
// ==UserScript==
// @name button test
// @namespace http://www.webmonkey.com
// @description test that I can intercept a button and process click