English 中文(简体)
j 用来确定隐蔽领域的价值?
原标题:jQuery to set the value of a hidden field?

我想能够把隐蔽领域的价值确定在以下链接中一对手的价值:

$("#currentDir").val($(".jstree-clicked").attr("rel"));

但是,这并不奏效。 然而,这种更简单的表述只是罚款:

$("#currentDir").val("TEST");

这为隐蔽领域提供了id = 现有 Dir to the Value “TEST”. 但为什么没有其他表达方式?

EDIT:

如前所述,在要求作此说明时,该等舱位就不存在。 正如我下面评论的那样,我认为它需要作为回响。 但我不知道什么地方(在几个地方进行了审判,但没有一个工作)。

The following s. JsTree Code:

    <script type="text/javascript">
        var url;
        $(function () { 
            $("#demo2")
            .bind("loaded.jstree", function () { 
              alert($(".jstree-clicked").length); //This works as a callback, but unfortunately the cookie seems to not have been set yet...

                $("a").click(function () {
                    url = "?url=" + $(this).attr("rel");
                    $( #result ).load( /Customers/Files/  + encodeURI(url));
                    $( #currentDir ).val($(this).attr("rel"));    
                });

            }).jstree({
                "html_data": {
                    "ajax": {
                        "url": "/Customers/Directories/"
                    }
                },
                "ui": {
                    "select_limit": 2,
                    "select_multiple_modifier": "alt",
                    "selected_parent_close": "select_parent"//,
                },
                "themes": {
                    "theme": "classic",
                    "dots": true,
                    "icons": true
                },
                "plugins": ["themes", "html_data", "ui", "cookies"]
            });

    });

    </script>

你可以看到,我已经有一个回响,确定了目前的价值。 Dir在点击时隐蔽。 但是,由于还将出现倒退,我用 co子重新上载,把JsTree与以前一样,用 j树-浮标出的标记。 因此,点击功能的功劳是好的,并打上了当场,但经过一个后退后,我需要再一次回响(我假设我最初在这里所说的话,即在树子创建之后)。

我不认为,正如数人所要求的那样,这里确实有点张贴了html来源,它有等级和一切,但我只是从大火中说:

<a rel="HtmlHelpers" class="jstree-clicked"><ins class="jstree-icon">&nbsp;</ins>HtmlHelpers</a>

问题似乎是,在职能被召唤的时候,这个问题还没有解决。 同样,任何帮助在适当地点发表声明(回响?)都受到赞赏!

EDIT:

因此,在树木装满后,我会对这一实际触发点进行回击(见上面Bbind部分加上评论)。 但看来,即使树木被装上(用显示元素数的警示箱加以确认), co果似乎并未投入使用,因此,表一米后仍然无用。 我现在插入的声明是一份答复中建议的内容,以核实树苗是否存在,而且它依然没有。 因此,任何人都知道,在 co子把 j树树块划入后,我怎么能够援引呢?

最佳回答

经过很多争辩,我终于找到了答案。 如果使用厨师办法,则必须在酒类中加以使用:

.bind("reselect.jstree", function () {

然后,在 co子确定选定项目并投入使用之后,便会引发 call。

问题回答

它与确定数值无关,而是从<代码>获取价值。

3. 利用该守则来研究是否存在要素:

alert($(".jstree-clicked").length);

如果它只收回了“......”以外的任何东西,那么1人知道这个要素是没有的。

即便您有一个以上要素,attr()方法仍可退还第一个已知要素的预期属性,因此,或许是.jstree-clicked。 别处有<代码>rel属性。

http://api.jquery.com/attr/





相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签