有人可以指出我猜测我的剧本中的错误很简单。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
var pn = $("#search");
$("button").click(function(){
$("#div1").load("data.asp?prodref= #result"+pn);
});
});
</script>
</head>
<body>
<p id="search">92K002</p>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>
我正在尝试将文字从<p id="search">92K002</p>
传递到.load()
答案 0 :(得分:1)
var pn = $("#search");
是一个完整的jQuery对象。您需要从中抓取.text()
。
var pn = $("#search").text();
一种简单的方法是通过浏览器控制台中的“网络”选项卡检查正在加载的URL。