English 中文(简体)
j 点击中选中显示投入数据
原标题:jQuery display input data inside select on click

我有一份附有纽芬兰文的案文。 当我填充投入并点击纽特时,我想在选择中添加这一信息。 任何人都可以帮助,我找不到任何例子。

Input & button
<input id="new_menu_name" type="text" name="new_menu_name" placeholder="Please enter your menu title">
<input class="add_menu_item" name="add_menu_item" value="Add" type="button">

Select
<select name="menu_items" id="menu_items" size="8" multiple="multiple" style="height:200px; width:250px;">      
</select>

我曾尝试过使用这一文字,但没有uck。

$(document).ready(function() {
    $(".add_menu_item").click(function(){
 $( #menu_items ).
      append($("<option></option>").
      attr("value").
      text(value)); 
    });

JSfiddle http://jsfiddle.net/clintongreen/XDqQL/

最佳回答

当您打电话attr时,您不再实际设定价值:您重新计算<代码> 价值/代码>的现值。 您应使用val的功能,确定价值:

$(".add_menu_item").click(function () {
    $( #menu_items ).append(
        $("<option></option>").val(value).text(value)
    );
});

现在,我看着你的全称,另一个问题是,你打上了<条码>(<>值/代码>变量)的序号。 我认为,你可能想像:

$(".add_menu_item").click(function () {
    var value = $(this).prev().val();
    $( #menu_items ).append(
        $("<option></option>").val(value).text(value)
    );
});

(NB还称,我变了使用 j子,而不是Mootools)

问题回答

英文、法文、英文、法文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、西班牙文、俄文、俄文、西班牙文、俄文、西班牙文、俄文、俄文、西班牙文、俄文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、西班牙文、俄文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、西班牙文、俄文、俄文、西班牙文、俄文、俄文、俄文、西班牙文、俄文、俄文、西班牙文、俄文、俄文、俄文、俄文

更改如下:<代码>attr(“价值”),数值。 <代码>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: &...

热门标签