Created
May 9, 2018 03:56
-
-
Save marsyang1/a756824457f6e9c56790a27702ba8e8a to your computer and use it in GitHub Desktop.
JQueryDebugSample.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//1. 在console載入jQuery | |
var jq = document.createElement('script'); | |
jq.src = "http://code.jquery.com/jquery-latest.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
$.post("/test/hello.php" | |
,{"accountName":"hello","birthday":"1980-08-01","bankno":"12341234"}, function (data) { | |
console.log(data); | |
console.log(data.data) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment