(重写问题)
表单中的输入字段具有物料库存编号。我需要根据该项目的库存号从外部站点获取元值。
假设该股票编号的外部站点页面具有元值
<meta description="Widget Part Red">
商品库存编号为“12345”。
并且外部 URL 是https://www.example.com/12345
表单中的输入字段类似于
<input name='stocknumber' id='stocknumber' onblur='getitemdesc();'>
并且项目描述会放在这个span中
<span id='thedescription'></span>
脚本有
function getitemdesc() {
// get the value from the input field
var itemnumber=$('input[name="stocknumber"]').val;
// some process/function to query the external url and get the meta:description value from the page
var metadesc = someprocess_to_return_meta_desc;
// that process/function returns 'metadesc'
// and inserting the metadesc into the span
$("#thedescription").html(metadesc);
}
从外部 URL 获取元值并将其返回给函数以便我可以将元:描述放入跨度的最佳方法是什么?
(假设对输入字段进行了适当的清理。)
吃鸡游戏
波斯汪