English 中文(简体)
改动页数选择名单和请假数据,而不重载页
原标题:Changing text on page based Select list selection and Query data without reloading page

我的网页上有一个选择清单,根据选定哪一个项目(每个项目是一部分),页上描述部分内容的案文应当改动。 各个部分的层面(Dia下限,Height)都处于 d状态。 I m 用电.指电。

选择名单上的数值是我询问的部分数字。 我猜测,我所担心的是,在不重上页的情况下,我需要从询问中解救。

我不想说“我点击备选案文2”。 从我的问询中找到办法2的直径和焦炭,并将这些层面纳入我的P tag

我认为,如果我有新的层面,就能对案文进行更新,但我不敢肯定,如何在不重负荷的情况下实现我所需要的层面。 感谢你们的帮助!

最佳回答

奥基,我得出这个数字。 使用:

$( #foo ).change(function () {
    $.get( getInfo.cfm , function (data) { $( #output ).text(data) });
});

我的CFM 我的返回数据载于产出方括号。 象一个药店一样工作! 感谢你们的帮助和建议,大家!

问题回答

基本有两个选择。 两者都涉及 Java本。

首先是将所有数据储存在一份大型联合材料阵列中。 当选定盒子改变选定的项目时,该项目被用于在阵列中找到适当的项目,并在适当的批次(或以任何方式)展示。

第二种选择是类似的,但你不使用当地清单副本,而是利用日本宇宙航空研究开发机构把该文本从一个氟氯化碳上载到服务器。

如果选择不止几个,我将采用第二种办法。 第一种选择使该网页更加缓慢(项目较多,负荷较慢),但会更快地应对变化。 几内亚和日本宇宙航空研究开发机构的选择将使首页更快,但不得不等到服务器上参观展示的文本。 请注意,根据美国宇宙航空研究开发机构的选择,在案文装满时,你可以有用户从事其他业务。

我同意第二种选择。 我的申请有两个下降的菜单,一个菜单由第一个菜单要求的交单中的数据填满。

I suggest checking out jQuery as it is a little bit easier to work with: jQuery Ajax

向冷战时期的呼声应当恢复。 这里的一个例子是,我使用的是:

$( #menu1 ).change(function() {

    <!-- Get the value of the dropdown menu -->    
    var selected = { menu1:$(this) .val()}       


        $.ajax({
            type: "POST",
            url: "the CFM file name",
            dataType: "json",              
            data: selected,
            success: function(response){                  

                <!-- if the response from the database is null set the result to "nothing found", else set it to the response -->
                if (response != "") {                       
                         $("#output").append(response);                                                 




                } else {
                   $("#output").append("nothing found");  
                }                                            

            }//end the success function

        });// end ajax call        

});    //end menu1 change function

我修改了我的法典,使其(完全)更容易理解。 我希望这一帮助。





相关问题
JQuery AJAX .load - flash chart doesnt load in IE

An IE issue has me completely stumped. I have a coldfusion page that uses JQuery s AJAX .load function to load in a new flash file that is generated by coldFusion s cfchart tag. This works completely ...

Best Coldfusion Library for OpenID [closed]

I am getting ready to start a project that requires using OpenID within Coldfusion 8. I have found a number of different options and was wondering what has worked the best, get s the most support, ...

Find ColdFusion Generated ID

Is there a way to find the elements generated by ColdFusion s <CFLayout> and <CFLayoutArea> tags? These tags: <cflayout type="tab" name="MyAccount"> <cflayoutarea name="...

ColdFusion COM error

I am upgrading from CF4.5 to CF8. Calls to COM dll s that used to work in version 4.5 now throw a "Complex object types cannot be converted to simple values.." error. The COM object has a few arrays ...

What s the best way to write engine-specific CFML code?

Sometimes it is necessary to write different code for Adobe ColdFusion vs Railo vs OpenBD, due to differences in implementation. Do people have a specific method that they use for this? For example, ...

热门标签