我希望通过ajax发送帖子数据,以便不获得返回结果。如果与脚本的连接成功,我想调用myfunction()函数。我试图通过在ajax中取得成功来获得这种效果。不幸的是,它失败了。你知道怎么做吗?
$(function(){
$('#send').click(function(){
var info = 'my info';
var website = $('#website').val().trim();
if (website.length>0){
$.ajax({
type: 'post',
url: 'file.php',
data: {
url: website,
info: info
},
success: function(){
myfunction();
}
});
}
});
function myfunction(){
alert('My function alert');
//other code
}
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="website" />
<input type="submit" value="add website" id="send" />
&#13;