最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - iFrame src property and relative URLs not working - Stack Overflow

programmeradmin3浏览0评论

I have a web page that has an iFrame in it with a definition in the HTML like the following:

<iframe id="page_is_fresh"  src="~/HTML/fresh.html" style="display: none"></iframe>

My site is running under a subfolder /Marketing so all urls are something like http://myserver/Marketing/SomeFolder/someitem.html

I have javascript to change the src of my iframe when an item on the form changes.

    $('#page_is_fresh').attr('src', '/HTML/stale.html');

The problem is, this makes the url http://myserver/HTML/stale.html

I tried using '~/HTML/stale.html' and that gives me http://myserver/Marketing/SomeFolder/~/HTML/stale.html which doesn't work either.

How can I get it to give me http://myserver/Marketing/HTML/stale.html without having to hard code the /Marketing part in?

I have a web page that has an iFrame in it with a definition in the HTML like the following:

<iframe id="page_is_fresh"  src="~/HTML/fresh.html" style="display: none"></iframe>

My site is running under a subfolder /Marketing so all urls are something like http://myserver/Marketing/SomeFolder/someitem.html

I have javascript to change the src of my iframe when an item on the form changes.

    $('#page_is_fresh').attr('src', '/HTML/stale.html');

The problem is, this makes the url http://myserver/HTML/stale.html

I tried using '~/HTML/stale.html' and that gives me http://myserver/Marketing/SomeFolder/~/HTML/stale.html which doesn't work either.

How can I get it to give me http://myserver/Marketing/HTML/stale.html without having to hard code the /Marketing part in?

Share Improve this question asked May 15, 2015 at 20:20 SpaceCowboy74SpaceCowboy74 1,4211 gold badge25 silver badges47 bronze badges 2
  • 1 ../HTML/stale.html ?! – A. Wolff Commented May 15, 2015 at 20:22
  • That seems to work on this one. Just tried it after i posted this myself. Thanks! – SpaceCowboy74 Commented May 15, 2015 at 20:24
Add a ment  | 

1 Answer 1

Reset to default 5

Use ../HTML/stale.html instead of ~/HTML/stale.html or /HTML/stale.html in your javascript.

The server considers ~ to be a directory in the way you formatted it.

../ lets the server know it needs to start one directory up

发布评论

评论列表(0)

  1. 暂无评论