CSS
- 3 ответа
- 0 вопросов
4
Вклад в тег
<script>
function go(param)
{
$.ajax({
type: "POST",
url: "assets/php/ajax.php",
data: "go=1¶m="+param,
success: function(html)
{
$("body").append(html);
}
});
}
</script>
<b onclick="go()">Пример</b>