ajax 請求某個檔案

pengfoo發表於2013-09-05
 		$.ajax({
			url:"strock.js?name="+chiWord,
			async:false,
			success:function(json){
				_this.jsonObj = json;
			if (_this.jsonObj==null)
			{
				alert("parse json error");
				return;
			}

                             },
			error:function(){
				console.error("got error, %o", arguments);
			}
			});

相關文章