Skip to content

Instantly share code, notes, and snippets.

@ghostcode
Created July 28, 2014 02:47
Show Gist options
  • Select an option

  • Save ghostcode/38f8edec7d50ea0fbbc5 to your computer and use it in GitHub Desktop.

Select an option

Save ghostcode/38f8edec7d50ea0fbbc5 to your computer and use it in GitHub Desktop.
模拟鼠标点击
var target = document.getElementById('demo');
var mEvent = document.createEvent("MouseEvent");
mEvent.initMouseEvent("click", true, true, window, 0,
    0, 0, 0, 0,
    false, false, false, false,
    0, null);

target.dispatchEvent(mEvent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment