Div nested html without iframe

Div nested html without iframe
Recently, when doing homework, I needed to nest a page without using an iframe, so I had to nest it in a div using the jquery method.

Copy code
The code is as follows:

<script type="text/javascript">
$(document).ready(function() {
$("#button").click(function() {
$("#content").load("index.jsp");
});
});
</script>

The code is just this much, where #button is the id of a button and content is the div where you want to insert the HTML

And you can't just use $("#button").click(function() {}; because this is before the page is loaded, so you can't find the div you want after the page is loaded, so you have to add $(document).ready(function() {};

Another key point is that many people forget to reference jquery, so you must add <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

<<:  HTML+CSS+JS to implement the Don't Step on the Whiteboard game

>>:  SQL implementation of LeetCode (196. Delete duplicate mailboxes)

Recommend

Linux dual network card binding script method example

In Linux operation and configuration work, dual n...

How to execute PHP scheduled tasks in CentOS7

Preface This article mainly introduces the releva...

How to implement on-demand import and global import in element-plus

Table of contents Import on demand: Global Import...

Summary of MySql index, lock, and transaction knowledge points

This article summarizes the knowledge points of M...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

A simple example of how to implement fuzzy query in Vue

Preface The so-called fuzzy query is to provide q...

Solution to multiple 302 responses in nginx proxy (nginx Follow 302)

Proxying multiple 302s with proxy_intercept_error...

Implementation of local migration of docker images

I've been learning Docker recently, and I oft...

Vue integrates Tencent TIM instant messaging

This article mainly introduces how to integrate T...

A brief talk about Mysql index and redis jump table

summary During the interview, when discussing abo...