English 中文(简体)
奇怪的刺绣/口交问题
原标题:Strange javascript/jquery issue

希望有人能帮我

我有一个页面, 在模式弹出时显示用户列表 。 此页面可以以两种方式访问, 一种是您选择未经批准的用户, 一种是打开页面, 另一种是您选择用户账户, 以打开一个弹出式账户, 询问您是否有搜索标准, 如名称, 一旦您在模式弹出时搜索完成, 并打开用户的页面 。

我在表格上有一个按钮可以清除任何过滤器。 当我在未经批准的用户页面上运行时, 它会清除框中的罚款, 但是如果我在表格上这样做, 代码不会从另一种方式上空出文本框, 当我尝试警告时它不会显示任何数据。 在未经批准的路径上, 提醒是有效的!

以下是我使用的jquery:

    clear: function () {
        //reset filters//
        $( .usersFilterList li ).remove();
        $( .userFilterSelect option ).show();

        $( #UserFilter_SearchTermIncluded ).attr( value ,   ); // This line doesn t seem to work properly

        alert($( #UserFilter_SearchTermIncluded ).attr( value ));

        //hide filter options
        MSG.showNHide(  ,  #usersFilterBox );

        //reset modal control buttons
        $( #usersButSaveFilter,#usersButClearFilter ).hide();
        $( #usersButFilter ).fadeIn();

        usersFilter.refresh(0);
    }

有人知道我是不是在做傻事吗?

对不起,如果这令人困惑的话,我不能再张贴我担心的代码了。我可以向你保证,文本框的识别码是正确的。

任何忠告都会感激不尽 因为我已经盯着它看好几个小时了...

Cheers, Gareth

如果我右键单击第二个选项, 然后在新标签中运行, 然后将第一个打开的标签作为整页运行, 代码就会有效! 所以问题似乎是有两个弹出 。

< 强 > SOVED

我找到工作了 谢谢你的帮助

我只是指派一个班级, 搜索任何与该班级的物品 并清理它像这样:

    $( .jq-clearme ).val(  );

我将尽我所能完成这个任务。因为我代表太低,我还不允许我这样做。

最佳回答

我找到工作了 谢谢你的帮助

我只是指派一个班级, 搜索任何与该班级的物品 并清理它像这样:

$( .jq-clearme ).val(  );

我将尽我所能完成这个任务。因为我代表太低,我还不允许我这样做。

问题回答

要更改元素的值( 或要检索它), 访问 < em> 属性 < / em > 是错误的方法 - 它在两个方向上不同步。 您想要的是 < em> 财产 < / em > 。 同时通过 < code >. prop( 值[, 新值]) < / code > 来显示 jQuery 获取/ 设置它的正确方式是 < code>. val( [新值])

为清除元素 s 值,使用下列值:

$( #UserFilter_SearchTermIncluded ).val(  );

要检索/展示它,使用

alert($( #UserFilter_SearchTermIncluded ).val());

您应该使用 val () 来获取/ 设定输入值 。

使用没有参数的参数来获取值 :

$( #UserFilter_SearchTermIncluded ).val();

使用一个参数设定值, 在此情况下, 将它设置为空 :

$( #UserFilter_SearchTermIncluded ).val(  );

是否有一个ajax呼叫 可能装载你两次张贴的 Javascript, 所以当第二次(ajax呼叫后)被调用时, 它会发现冲突?

其他人提到, 最好使用 .val () 来设定值, 而 .val () 来获取值。 如果有任何 Javascript 错误, 请在火虫中检查 。





相关问题
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.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签