gpt4 book ai didi

php - jquery脚本不执行

转载 作者:可可西里 更新时间:2023-11-01 01:05:17 24 4
gpt4 key购买 nike

目前,我正在使用 jquery、php 和 codeigniter 编写程序 - 但是,我遇到了一个问题。

当我使用 codeigniter php 框架编写 View 文件时,无法使用 URL 127.0.0.1/ci/welcome/passdataview/6/7 执行 JQuery。如果我使用127.0.0.1/ci/welcome/passdataview,可以执行JQuery脚本。

谁能告诉我如何在 URL 中使用 codeigniter 参数执行 jquery 脚本?

<html>
<head>
<script type="text/javascript" src="../js/jquery-1.7.1.js"></script>
<script type="text/javascript">

$(document).ready(function(){
alert ("here");
});

</script>
</head>
<body>
<div><h2>demo 1</h2></div>
<input type="hidden" id="hidden1" value="<?php echo $username;?>">
<input type="hidden" id="hidden2" value="<?php echo $subject;?>">
</body>
</html>

最佳答案

可能是你的 jquery 文件问题,尝试加载 url helper 并使用它:

<script type="text/javascript" src="<?php echo base_url('js/jquery-1.7.1.js');?>"></script>

无论您如何更改文件夹或目录路径都有效。

关于php - jquery脚本不执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12445597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com