HTML 代码:
<div class="clearfix" style="color: #555" style="display:block; ">
<input type="text" id="id_site" placeholder="nom-du-site" style="width: 245px; font-size: 16px;">
<div style="float: right; color: black; font-size: 16px; margin-top: 10px; margin-left: -6px">.domain.com</div>
</div>
<br>
<div class="spacing">
<a href="" id="envoyer" class="bouton">Envoyer</a>
这是带有 Query Ajax 调用的 javascript 代码:
$("#envoyer").click(function (e) {
// checks user input:
nom = document.getElementById('id_nom');
email = document.getElementById('id_email');
site = document.getElementById('id_site');
$.ajax({
url: 'http://localhost/website/script.php',
dataType: 'jsonp',
data: {
nom: nom,
email: email,
site: site
},
success: function (json) {
DataSeries = json;
},
error: branchAjaxFailed
});
});
这是script.php(目前):
<?
if (isset($_GET["nom"])) $nom = $_GET["nom"];
if (isset($_GET["email"])) $email = $_GET["email"];
if (isset($_GET["site"])) $site = $_GET["site"];
?>
- Chrome 无限期冻结。如果我在此 Ajax 调用之后添加调试中断,Chrome 永远不会在“检查元素”工具中到达那里。
- IE 给我一个“第 2 行的堆栈溢出”错误。
谁能看到问题是什么?