English 中文(简体)
无线电只穿过第一个价值[复制]
原标题:radio is only passing the first value [duplicate]
This question already has answers here:
Closed 11 years ago.

Possible Duplicate:
How can I get which radio is selected via jQuery?

我正试图在我的网站上建立一个用户评级制度,但只有第一个数值已经过去,因此,在表格中,评级栏永远是个。 这是我与电台合作以来的时期。

这里是我所拥有的。

    <form id="add-rateing">
<input type="radio" name="MOVIE_RATING" value="1" > 1
<input type="radio" name="MOVIE_RATING" value="2" > 2
<input type="radio" name="MOVIE_RATING" value="3" checked="yes"> 3
<input type="radio" name="MOVIE_RATING" value="4" > 4 
<input type="radio" name="MOVIE_RATING" value="5" > 5 <br>
<input type="hidden" name="MOVIE_ID" value="<?php echo $id; ?>">
<input type="hidden" name="MOVIE_TITLE" value="<?php echo $title; ?>">
<input type="hidden" name="USER_ID" value="<?php echo $loggedinusername; ?>">
<input type="submit" value="I Drank To The Credits" onclick="$( #add-rateing ).hide( fast )">
</form>
<script type="text/javascript">
$("#add-rateing").submit(function(event){
event.preventDefault()

addrateing();

 });

function addrateing()
{
var movie_rating_s   = $("#add-rateing [name= MOVIE_RATING ]").val();
var movie_id_s    = $("#add-rateing [name= MOVIE_ID ]").val();
var movie_title_s   = $("#add-rateing [name= MOVIE_TITLE ]").val();
var user_id_s   = $("#add-rateing [name= USER_ID ]").val();
var errors  =   ;

$.ajax({
type    : "POST",
url     : "movie_watched.php",
data    : { rating: movie_rating_s,
            movie  : movie_id_s,
        title: movie_title_s,
            user : user_id_s, },

cache   : false, timeout: 10000,

success  : function() {
    alert("You have played <?php echo $title; ?> ");

},
error    : function() {
    alert("there is a problom");
},
complete : function() {
}

});
};
</script>
问题回答

引证:

var movie_rating_s   = $("#add-rateing [name= MOVIE_RATING ]").val();

加入:

var movie_rating_s   = $("#add-rateing [name= MOVIE_RATING ]:checked").val();

你们需要选择选定的无线电元素,如:

$( input[name="MOVIE_RATING"]:checked ).val();

这个问题与贵格·库列斯的遴选人一样。 它没有具体说明 gr取“受检查的”无线电纽顿的价值。 在装上你的电影时,引证:

var 电影_form_s = 美元[名称=MOVIE_RAting]:checked” val()





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签