jquery中獲得$.ajax()事件返回的值並添加事件的方法

來源:互聯網
上載者:User

如果想獲得$.ajax()中返回的值,直接用在success:funciton(){return xx} 是不可以的,要想獲得xx的值,要在script中,使用全域變數。利用全域變數引出xx的值。

jquery 取得$.ajax事件中的傳回值,並添加事件複製代碼 代碼如下:<html>
<head>
<title>測試JQUERY提交動態文本</title>
<script language="javascript" src="jquery.js"></script>
<script language="javascript">
$(function(){ //引用的jquery檔案我就不上傳了,大家應該都有的。
$("#a1").clone().appendTo("#ap");
var a=""; //定義全域變數 a;
txtadd();
alert(a); //測試全域變數是否有值;
$("#tall").blur(function(){ alert("測試一下"); }); //添加一個從同步事件裡返迴文本框的blur事件
$("#a1").blur(function(){ alert("本頁面事件!"); });//注意,clone出來的a1文字框不具有blur事件;
function txtadd(){
$.ajax({
async:false, //使用同步請求,因為非同步請求不能將傳回值傳給全域變數;
type:"post",
url:"autotxt.php",
data:{txtid1:1,txtid2:2},
beforeSend:function(){$("#tt").html("資料載入中。。。")},
success:function(data){$("#tt").html(decodeURI(data)); //autotxt.php傳回值<input name='tall' id='tall' value='dc' maxlength='6'/>;
a=$("#tall").val(); //將傳回值做處理給全域變數
}
});
}
})
</script>
</head>
<body>
<form action="autotxt.php" method="post">
<div id="tt"></div>
<div id="ap"></div>
<input type="text" id="a1" name="a1" value="測試" />
<input type="hidden" id="ok" name="ok" value="ok" />
<input type="submit" value="確定" />
</form>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.