Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试提交到 iframe 并取回响应。
提琴手
出于测试目的,test.php 只返回“abcd”。我想捕捉这个响应——为了测试,只需提醒它。
Firebug 甚至没有输入这个:
$d('#imageform').submit(function(){
任何人都可以看到我错过了什么 - 即为什么没有调用提交?非常感谢您的帮助!
你不需要听点击甚至提交事件。只需听 iframe 的加载事件。
var $d = jQuery.noConflict(); $d(function ($) { $('#imageupload').load(function () { console.log($("#imageupload").contents()); }); });
不要忘记更改提交按钮上的类型属性以提交。