This time I will show you how to operate Ajax to return the HTML tag style, and what are the precautions when operating Ajax to return the HTML tag style. The following is a practical case. Let’s take a look. .
First prepare the container to return the content
<p class="container"> </p>
Predefine a style so that the returned content can be directly applied
For example, the table# we want to return ## It won’t be too much, just open the page. . .
<style> .container table{ width:100%; } </style>
$(function(){ $('a').click(function(){ $.get('get.html',function(data){ $('.container').html(data); }); }); });
ajax asynchronous download of files
The above is the detailed content of How to operate Ajax to return HTML tag style. For more information, please follow other related articles on the PHP Chinese website!