پاسخ به:آموزش jquery از ابتدا
شنبه 16 دی 1391 9:17 PM
با سلام مجدد
example |
---|
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").remove();
});
});
</script>
</head>
<body>
<div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;">
This is some text in the div.
<p>This is a paragraph in the div.</p>
<p>This is another paragraph in the div.</p>
</div>
<br>
<button>Remove div element</button>
</body>
</html>
|
تو این کد با تابع حذف کردن (یک div یا پاراگراف و ....)
آشنا می شید لطفا دقت کنید خیلی ساده است