要獲取某個區域的 href 屬性的查詢字符串,請使用?search 屬性。您可以嘗試運行以下代碼來搜索查詢字符串 –
示例
<!DOCTYPE html>
<html>
<body>
<img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
<map name = "html">
<area id = "myarea" shape = "circle" coords = "154,150,59" href = "about.htm?id=company" alt = "Team" target = "_self" >
</map>
<script>
var x = document.getElementById("myarea").search;
document.write("<br>Querystring: "+x);
</script>
</body>
</html>
登錄后復制
以上就是如何在JavaScript中搜索area標簽的href屬性中的查詢字符串部分?的詳細內容,更多請關注www.92cms.cn其它相關文章!






