1

我正在使用以下代码使用 jstorage 存储数据。我无法理解什么是 load_data_from_server()。请帮我从 jstorage 调用函数背后的代码

<script src="prototype.js"></script>
<script src="jstorage.js"></script>
<script>
// Check if "key" exists in the storage
var value = $.jStorage.get("key");
if(!value){
    // if not - load the data from the server
    value = "hai";
    value = load_data_from_server() //I want to call c# code behind function here
    // and save it
    $.jStorage.set("key",value);
}
</script>
4

0 回答 0