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 向父窗口发送了消息,因为我将在一个 iframe 托管页面上有多个 iframe。
如何检查哪些帧发送了消息?
您只能检查哪个域发送了消息。如果您需要更多标识,您可以随时将其分层到您的消息传递系统中。
发送消息,例如:
message = { "source": "menu", "message": "click on entry" };
然后每个帧都有自己的来源。您将需要序列化消息,JSON 可以很好地工作。