我有一个脚本如下
$('.button1').click(function() { document.location.href=$(this).attr('id'); });
button1具有变量唯一的ID。点击,页面必须重定向到url
“www.example.com/index.PHP?id=buttonid”,但现在该页面仅将重定向到“按钮ID”。
我想在当前url之前添加字符串“www.example.com/index.PHP?id=”。我怎么可以这样做?
提前致谢.. :)
blasteralfred
解决方法
$('.button1').click(function() { window.location = "www.example.com/index.PHP?id=" + this.id; });
首先使用window.location更好,根据规范document.location值是只读的,可能会导致您在较旧/不同的浏览器中头痛。检查备注@ MDC DOM document.location page
而对于第二个 – 使用attr jQuery方法来获取id是一个不好的做法 – 你应该使用直接本机DOM访问器this.id作为分配给这个的值是普通的DOM元素。