我有一个href标签,我写了onclick func,
<a href="#" id="thumb" class="thumb" onclick="doThumb('<?php echo the_ID(); ?>');"><?php the_post_thumbnail('portfolio_thumbs'); ?></a>
在 onclick() 函数中,代码是,
<script type="text/javascript">
function doThumb(temp)
var tempThmb = temp;
document.getElementById("selectedResult").innerHTML=tempThmb;
return tempThmb;
}
</script>
返回的值,我将它打印在一个空的 div 中。
<div id="selectedResult" name="selectedResult"></div>';
现在我的问题是,我在空 div 中得到结果,但我必须将 div 的值传递给 $my_postid。
$my_postid = "Should pass the value here";//This is page id or post id
$content_post = get_post($my_postid);
我怎样才能做到这一点我必须使用ajax jquery,请帮助我......