작성일 : 11-10-17 09:55
|
[JQuery] JQuery 로 사용하는 iframe
|
|
|
글쓴이 :
조형래
 조회 : 1,695
|
<script type="text/javascript">
$(document).ready(function () {
$.tp_mart_list_register_favorite = function(number) {
$("#CheckForInsert").load('tp_mart_list_register_favorite.php', { mart_int: number });
};
});
</script>
<div ID="CheckForInsert" style="display:none;"></div>
<img src="a.jpg" onclick="javascript:$.tp_mart_list_register_favorite(<?php echo $row["mart_int"]?>)">
|
|