我在 php 文件中编写了一个 javascript,但是像这样从我的主页调用它
<script type="text/javascript" src="<?php echo base_url() . 'js/inf-scroll/javascript_showuserinst.php' ?>"> </script>
问题:如果我在 javascript_showuserinst.php 文件中看到一行,因为$.post('/instruction/show_user_inst/<?php echo $userid; ?>', {
这里<?php echo $userid; ?>
给了我问题。那行语法是否正确?
我看到view source
它的显示<b>Notice</b>: Undefined variable: userid in <b>D:\xampp\htdocs\js\inf-scroll\javascript_showuserinst.php</b> on line <b>46</b><br />
但是,如果我在主页中复制并粘贴相同的 js 内容而不从外部文件中调用它,它就可以完美地工作。
javascript_showuserinst.php
Header("content-type: application/javascript");
?>
(function($) {
$.fn.scrollPagination = function(options) {
var settings = {
nop : 10, // The number of posts per scroll to be loaded
offset : 0, // Initial offset, begins at 0 in this case
error : 'No More Data To Display!', // When the user reaches the end this is the message that is
// displayed. You can change this if you want.
.............
.............