为什么这段代码不起作用?

时间:2009-08-24 18:04:38

标签: jquery html

我想在点击时显示span标记中两个单选按钮的值,但这不起作用:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <title>Untitled Document</title>
        <script src="jquery.js" type="text/javascript">
        </script>
    </head>
    <body>
        <p>
            your amount is : <span id="displayPrice"></span>
        </p>
        <input type="radio" value="159" name="price" onclick="$('displayPrice').html(this.value)">
        <br>
        <input type="radio" value="259" name="price" onclick="$('displayPrice').html(this.value)">
    </body>
</html>

1 个答案:

答案 0 :(得分:11)

$('displayPrice')不是有效的选择器。你想要$('#displayPrice')。

事实上,但是对于它的价值而言,通常最好将你的javascript处理代码分开并将其置于一个准备好的事件中,例如: -

$(document).ready(function() {

    $("input[name='price']").click(function() {
        $('#displayPrice').html($(this).val());
    });
});