jQuery ajax 调用 javascript 函数
我正在使用 jQuery 和 Ajax。
我的 MainFile 有以下代码:
<html>
<head>
<script src="Myscript.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type: 'POST',
url: 'ajax.php',
success: function(data){
$("#response").html(data);
}
});
});
</script>
<body>
<div id="response">
</div>
</body>
</html>
我的 ajax.php 获取示例数据
...
MyScript.js has the following
function display (text,corner)
{
}
..
我有 Myscript.js。 在此,我有一个名为 display(text,corner)
的函数。 我必须在执行ajax.php后调用这个函数。
对于上面的代码,我该如何在 jQuery 中实现呢?
是否可以在ajax.php之后决定执行顺序并调用display(text,corner)
?
I am using jQuery and Ajax.
My MainFile has the following code:
<html>
<head>
<script src="Myscript.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type: 'POST',
url: 'ajax.php',
success: function(data){
$("#response").html(data);
}
});
});
</script>
<body>
<div id="response">
</div>
</body>
</html>
My ajax.php get the sample data
...
MyScript.js has the following
function display (text,corner)
{
}
..
I have Myscript.js. In this, I have a function called display(text,corner)
. I have to call this function after executing ajax.php.
How do I do it in jQuery for the above code?
Is it possible to decide the order of execution after ajax.php and make call for display(text,corner)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 Ajax 请求的回调函数中调用
display
函数,如下所示:在上述情况下,
data
是从ajax 接收到的响应。 php
You should invoke the
display
function in the callback function of the Ajax Request, like such:In the above case,
data
is the response that is received fromajax.php