我有一个传递给api的文本框……输入的文本被存储……
<input type="text" id="name" placeholder="Type something">
下面的代码在带有断点的chrome开发人员模式下工作,但没有它就无法工作......
$("#submit").click(function() {
var name = $('#name').val() ;
var url = "https://www.mariyano.com/app-server/test/?action=add_list&name="+name;
$.ajax({
url: url,
dataType: "jsonp",
});