ajax 输出html

ajax 输出html,第1张

无非两种情况,看一下我这个:

$.ajax({

url: url,

dataType: 'text',

data:{

code : objcode,

},

success: function(data,textStatus, jqXHR){

//能近来就说明成功了 直接alert(‘已赞过’)就行了

$("#data1").html(data)

$.parser.parse($("#data1"))

},

error: function(){

alert("失败!")

},

async: false

})

<!DOCTYPE html>

<html>

<head>

<script src="/jquery/jquery-1.11.1.min.js"></script>

<script>

$(document).ready(function(){

$("button").click(function(){

$("#div1").load("/example/jquery/demo_test.txt",function(responseTxt,statusTxt,xhr){

if(statusTxt=="success")

alert("外部内容加载成功!")

if(statusTxt=="error")

alert("Error: "+xhr.status+": "+xhr.statusText)

})

})

})

</script>

</head>

<body>

<div id="div1"><h2>使用 jQuery AJAX 来改变文本</h2></div>

<button>获得外部内容</button>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7443996.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存