使用javascript(codeigniter)创建到另一个页面的重定向链接

时间:2018-01-29 11:06:24

标签: javascript php codeigniter

嗨,请不要成功在Javascript中进行重定向。我正在使用codeigniter。下面是我的代码

<button type="submit" class="btn btn-default" id="btn_login" style="color:#ffffff; background-color:#00b9f2;" onclick="window.location.href = "https://www.google.com";">Connexion</button>

感谢

3 个答案:

答案 0 :(得分:1)

将单引号放在页面的链接上,如下所示

/p:PackageLocation="$(build.artifactstagingdirectory)\\"

答案 1 :(得分:0)

引号括起来是错误的。将您的HTML更改为:

<button type="submit" class="btn btn-default" id="btn_login" style="color:#ffffff; background-color:#00b9f2;" onclick="window.location.href = 'https://stackoverflow.com/users/6144395/ankit-singh';">Connexion</button>

答案 2 :(得分:0)

将结束更改为':

<button type="submit" class="btn btn-default" id="btn_login" style="color:#ffffff; background-color:#00b9f2;" onclick="window.location.href = "https://www.google.com";">Connexion</button>

改变:

<button type="submit" class="btn btn-default" id="btn_login" style="color:#ffffff; background-color:#00b9f2;" onclick="window.location.href = 'https://www.google.com';">Connexion</button>