admin管理员组文章数量:1346283
I've got a page full of links to another page with anchors on the end (like this: index.html#anchor). On the page they point to, I have a script that is supposed to read where the anchor points to in order to display something.
On firefox it works perfectly, But I've noticed that IE seems to remove the #anchor from the end of the url, so the script can't grab the text. Is there a way around this, without any server side code?
I've got a page full of links to another page with anchors on the end (like this: index.html#anchor). On the page they point to, I have a script that is supposed to read where the anchor points to in order to display something.
On firefox it works perfectly, But I've noticed that IE seems to remove the #anchor from the end of the url, so the script can't grab the text. Is there a way around this, without any server side code?
Share Improve this question asked Apr 29, 2010 at 23:37 tominatedtominated 3811 gold badge3 silver badges6 bronze badges5 Answers
Reset to default 5How is it getting the url?
window.location.hash
should contain the contents of the hash.
I've tested the following code in IE 6, 7, and 8, and the correct hash is shown in the alert box in all cases.
<script type="text/javascript">
function showHash() {
var currentUrl = "" + document.location;
var hash = "";
var parts = currentUrl.split("#");
if (parts.length > 1) {
hash = parts[1];
}
alert("the current hash is: " + hash);
}
</script>
<input type="button" value="Show Hash" onclick="javascript: showHash();" />
Does that code work for you?
Does window.location
still contain the anchor on IE, or is it removed there also? If it's still there you could use window.location
and split on the hash:
var whole = "" + window.location; // location is object, make sure it's a String
var parts = whole.split('#');
var anchor = parts[1];
Just try like this
var url = window.location.search.substring(1)
var arr=url.split("#")
str=arr[1]
Here's a function that helps. It returns null if there's no anchor. I placed it inside an Util.js, it es in handy :D
function getAnchor() {
var currentUrl = document.URL,
urlParts = currentUrl.split('#');
return (urlParts.length > 1) ? urlParts[1] : null;
}
本文标签: javascriptReading URL Anchor on IEStack Overflow
版权声明:本文标题:javascript - Reading URL Anchor on IE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743826540a2545744.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论