jQuery gets element value in iframe

php中世界最好的语言
Release: 2018-04-24 14:52:58
Original
3082 people have browsed it

This time I will bring youjQueryGet the element value in iframe, what are theprecautionsfor jQuery to get the element value in iframe, the following is a practical case, let's take a look.

Several ways to get elements in iframe with jquery:

Get parent page elements in iframe sub-page

$('#objId', parent. document );
Copy after login

Get it done...

Get the elements of the iframe subpage in the parent page:

$("#objid",document.frames('iframename').document) $(document.getElementById('iframeId').contentWindow.document.body).html()
Copy after login

Display the content of the body element in the iframe.

$("#testId", document.frames("iframename").document).html();
Copy after login

Get the element whose ID is "testId" based on iframename

$(window.frames["iframeName"].document).find("#testId").html()
Copy after login

Use JS or jQuery to access the iframe in the page, compatible with IE/FF

Note: Pages within the frame cannot cross domains!

Assume there are two pages under the same domain.

The index.html file contains an iframe:

    页面首页 
    
Copy after login

iframe.html Content:

    iframe.html 
  

www.jb51.net

Copy after login

1. Execute JS in index.html for direct access:

document.getElementById('koyoz').contentWindow.document.getElementById('test').style.color='red'
Copy after login

Access the ID named 'koyoz' in index.html iframe page, and obtain theobjectwith the ID 'test' in this iframe page, and set its color to red.

This code has been tested and can support IE/firefox.

2. Use jQuery to access index.html:

$("#koyoz").contents().find("#test").css('color','red');
Copy after login

The effect of this code is the same as direct JS access. Because of the jQuery framework, the code is shorter.

Collect some examples from the Internet:

Using jQuery to obtain the value of an element of the parent window in IFRAME can only be achieved by combining the DOM method and the jquery method

1. Operate in the parent window to select all radio buttons in the IFRAME

$(window.frames["iframe1"].document).find("input:radio").attr("checked","true");
Copy after login

2. Operate in the IFRAME to select all radio buttons in the parent window

$(window.parent.document).find("input:radio").attr("checked","true");
Copy after login

Parent window If you want to get the Iframe in the IFrame, just add a frames child, such as:

$(window.frames["iframe1"].frames["iframe2"].document).find("input:radio").attr("checked","true");
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Detailed explanation of the steps for Jquery to operate js arrays and objects

A collection of methods for jquery to traverse and filter arrays and json objects

The above is the detailed content of jQuery gets element value in iframe. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!