我需要在服務器-A上打開一個html頁面,並從服務器-B的網頁抓取一些值。換句話說,我想在服務器A的網頁上顯示服務器B的網頁值。HTML在不同位置的頁面之間傳遞值
我需要的值的網頁(服務器B)數據正在由我無權訪問的源填充。這些值寫入看起來像這樣的變量:[[0]]。當訪問該頁面時,用當前數據填充值[[0]]。
我沒有成功嘗試將標籤附加到[[0]]以允許從表單文章中讀取服務器A並獲取方法。
我的方法是將[[0]]中的這些數據移到server-A網頁上?
服務器-B頁:
<html>
<!-- Head information for the page including page title -->
<head>
<title>Test</title>
</head>
<body color=#FFFFFF>
<!-- Start of your page body -->
<!-- This code displays the current tag value for index 0
[[0]] will be replaced by the tag value a the time the page is loaded -->
The value of the tag with index 0 is [[0]]
<!-- Added code to store [[0]] in div -->
<div class="pink-box" id="thatDiv">[[0]]</div>
</body>
</html>
我增加了對服務器-A這個HTML/JavaScript和我正在與COR描述的錯誤:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Div</title>
<style>
body {
font-size: 12px;
font-family: Arial;
}
</style>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<b>Div:</b>
<ol id="Result"></ol>
<script>
$("#Result").load("http://192.168.1.168/user/default.html #thatDiv");
</script>
</body>
</html>
你可以使用捲曲爲此,但它是一種混亂的HTML處理這樣的數據...如果服務器B有一個feed ... – Stefan
如果你想從客戶端做到這一點,你也可以在javascript中使用ajax調用服務器B. – Alwin