<div ></div>
<script type="text/javascript">
//Get the item number
$.ajax({
url: "http://192.168.1.191/",
type: "GET",
dataType: 'jsonp',
// Customize the value of jsonp. If you use jsoncallback, then the server side needs to return an object corresponding to the value of jsoncallback.
jsonp: 'jsoncallback',
//If the parameters to be passed are not passed, you must also write them
data: null,
timeout: 5000,
//Return to Json type
contentType: "application/json;utf-8",
//The object returned by the server segment contains name and openid.
success: function (result) {
('oid').innerText=+":"+;
},
error: function (jqXHR, textStatus, errorThrown) {
alert(textStatus);
}
});
</script>