我正在尝试通过 onclick="return..." 使用 $.post 方法发布图像我的代码如下。它没有发布任何图像。我也尝试发布消息,它的工作!所以想知道是否有人可以帮助我解决这个问题?
//Index.php file
<head>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
</head>
<body>
<img src="1.jpg" id="imgURL">
<p id="wrap-btn">
//returning the image to post_to_wall function in main.js
<a href="#" onclick="return post_to_wall($('#imgURL').val())" id="btnpostwall">Post to Wall</a>
</body>
//Main.js file
function post_to_wall(imgURL){
$.post('posttowall.php',{'imgURL': imgURL},function(data){
//alert(data);
$('#loaddiv').hide();
});
}