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

php - JavaScript Redirection - Stack Overflow

programmeradmin0浏览0评论

Here is the code I have,

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/"+<? $name ?>+"/output.txt";
    setTimeout("top.location.href = url",1000);
</script>

$name is a PHP variable which has the name of which directory I'm trying to redirect to.

Needless to say, it isn't working. What's wrong with it? I don't know a lot about javascript so I probably did something stupid

Thanks

Here is the code I have,

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/"+<? $name ?>+"/output.txt";
    setTimeout("top.location.href = url",1000);
</script>

$name is a PHP variable which has the name of which directory I'm trying to redirect to.

Needless to say, it isn't working. What's wrong with it? I don't know a lot about javascript so I probably did something stupid

Thanks

Share Improve this question asked Jun 2, 2011 at 17:57 CoreyCorey 7813 gold badges14 silver badges33 bronze badges
Add a ment  | 

7 Answers 7

Reset to default 6

If your mixing PHP with JavaScript, it's always advisable to check the output being sent to the browser: right click on your website and click view source!

JavaScript doesn't care whether the content being sent to it is static HTML, from a Database or generated by PHP. If its in the output, it'll parse it.

If you'd have done that, you'd notice that your not echo'ing the $name variable.

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/"+<? echo $name ?>+"/output.txt";
    setTimeout("top.location.href = url",1000);
</script>

But that'd give you

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/"+ foo +"/output.txt";
    setTimeout("top.location.href = url",1000);
</script>

Which isn't valid JavaScript, as foo is now a JS variable, not a string.

So you should have:

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/<? echo $name ?>/output.txt";
    setTimeout("top.location.href = url",1000);
</script>

Furthermore, passing a string to setTimeout (or setInterval) is not remend; for the same reasons against using eval(), so you should end up with something like this instead:

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/<? echo $name ?>/output.txt";
    setTimeout(function () {
        top.location.href = url
    },1000);
</script>

Pass a function, not a string, to setTimeout.

var url = "http://localhost:8888/uploads/<?= $name ?>/output.txt";
setTimeout(function ()
{
    top.location.href = url;
}, 1000);

I am assuming that the $name is properly filled in by PHP.

Try this:

setTimeout(function() { top.location.href = url; }, 1000);

Try like this:

var url = "http://localhost:8888/uploads/"+<? $name ?>+"/output.txt";
setTimeout(function() {
    top.location.href = url;
}, 1000);
 <?php echo "var url = 'http://localhost:8888/uploads/$name/output.txt'";  ?>

Remove pluses and braces - just put variable in url. Also use Firebug to troubleshoot your JS code: http://getfirebug./

Use 'echo' or the slightly unreadable php short code <?= to echo out a variable.

<script language="JavaScript">
    var url = "http://localhost:8888/uploads/<?php echo $name; ?>/output.txt";
    setTimeout(function(){
        top.location = url;
    }, 1000);
</script>

I know I've created another closure, but feel it's more readable.

It should be:

window.location.href = url
发布评论

评论列表(0)

  1. 暂无评论