通过" ID"变量到JQuery脚本

时间:2015-09-20 14:23:31

标签: php jquery

希望有人能够回答我的问题。

我有一个php脚本inventory_edit.php,它传递了GET变量ID = xxx,从中进行搜索以返回结果。

这加载的是一个编辑产品屏幕,它具有启用了JQuery的div,一旦单击选项卡,它就会加载单个PHP脚本。 JQuery调用的脚本使用inventory_edit.php,$ _SESSION [' Product_ID']中的会话集。

使用以下代码通过inventory_edit.php调用JQuery。

chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
var currentTimer = request.timer;
if(currentTimer!=null){
    currentTimer = currentTimer*1000;
    alert(currentTimer);
    chrome.storage.sync.set({'x': currentTimer}, function() {
            console.log(currentTimer);
    });
}
if(currentTimer==null){
    chrome.storage.sync.get('x', function(items){
           currentTimer = items.value;
    });
    //Here currentTimer is undefined.
}
});

inventory_edit.js的内容如下

<script src="js/pm/inventory_edit.js"></script>

我真正需要做的是以某种方式将GET [&#39; ID&#39;]变量传递给这些文件以实现以下功能而不使用会话。

$(document).ready(function(){
    $.get('functions/inventory_edit_stock.php', function(data) {
        $('#stock_contents').html(data);
    });
    $("#stock").click(function(){
        $("#stock_contents").load('functions/inventory_edit_stock.php');
    });
    $("#pricing").click(function(){
        $("#pricing_contents").load('functions/inventory_edit_pricing.php');
    });
    $("#suppliers").click(function(){
        $("#suppliers_contents").load('functions/inventory_edit_suppliers.php');
    });
    $("#reordering").click(function(){
        $("#reordering_contents").load('functions/inventory_edit_reordering.php');
    });
    $("#other").click(function(){
        $("#other_contents").load('functions/inventory_edit_other.php');
    });
    $("#tecdoc").click(function(){
        $("#tecdoc_contents").load('functions/inventory_edit_tecdoc.php');
    });
});

非常感谢任何帮助。我是JQuery的新手,所以我想尽可能多地获得建议。

先谢谢 皮特

0 个答案:

没有答案