-1
以下代碼在Chrome,Safari和Opera上完美工作,但在Mozilla Firefox上完美實現。無法將單擊事件從一個元素傳輸到另一個元素在Firefox中
$("#first").click(function() {
event.preventDefault();
$("#second").click();
return false;
});
<form action="http://jsfiddle.net">
<input type="submit" value="Go to Bing" id="first">
</form>
<form action="http://example.com">
<input type="submit" value="Go to adams" id="second">
</form>
小提琴:http://jsfiddle.net/5GRVb/
【解析】:感謝@C-林