我正在尝试使用href将所选复选框的值转移到下一页。我无法使用提交按钮。我希望使用JavaScript完成此操作。
我的复选框中填充了表row-docid中的值。这是我在view.php中的Checkbox代码:
... mysql_connect("$host", "$dbuser", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $doctbl_name";
$result=mysql_query($sql);
if(!$result ){ die('Could not get data: ' . mysql_error()); }
while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) { ?>
<tr><td><input type="checkbox" name="chk_docid[]" id="<?php echo $row['docid'];?>"
value="<?php echo $row['docid'];?>"></td> ...
我在view.php。
的顶部有一个EDIT Link作为菜单<a href="editdoc.php>Document</a>
我的问题:点击修改链接后,如何传递已选中复选框的值。
注意:我搜索了一个类似的问题,但找不到一个。如果我错过任何类似的问题,请提供链接。
提前致谢。 拉克希米
注意:根据JaakKütt的建议,将复选框的id从chk_docid更改为动态行值($ row ['docid'])。
答案 0 :(得分:1)
我找到了解决方案!!!
虽然我以不同的方式做到了,但我感谢JaakKütt的所有支持,并帮助我思考一种可能的方式..
这就是我所做的..我将表单命名为showForm并通过函数本身移动到editdoc.php。
我的复选框:
<form name="showForm">
<input type="checkbox" name="chk_docid[]" id="<?php echo $row['docid'];?>" value="<? php echo $row['docid'];?>">
我的链接:
<a id="a_editdoc" onclick="getchkVal();" title="Edit Document">Document</a>
相应的脚本:
<script>
function getchkVal() {
var contents, vals = [], mydocid = document.forms['showForm']['chk_docid[]'];
for(var i=0,elm;elm = mydocid[i];i++) {
if(elm.checked) {
vals.push(encodeURIComponent(elm.value));
}
}
contents = vals.join(',');
window.location="editdoc.php"+"?v="+contents;
}
</script>
在editdoc.php中:
<?php
$cval=$_GET['v'];
?>
感谢。
答案 1 :(得分:0)
确保您的输入有不同的ID ..
while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) { ?>
...<input type="checkbox" name="chk_docid[]" class="chk_input"
id="chk_docid<?php echo $row['docid'];?>" value="<?php echo $row['docid'];?>">...
使用jQuery:
<a href="editdoc.php" id="editdoc">Document</a>
$("#editdoc").click(function(){
var selection=$("input.chk_input:checked");
if(selection.length){
var href=$(this).attr('href')+'?'+selection.serialize();
$(this).attr('href',href);
}
return true;
});
非jQuery的:
<a onclick="submitWithChecked(this,'chk_input')" href="editdoc.php">Document</a>
function submitWithChecked(e,className){
// fetch all input elements, styled for older browsers
var elems=document.getElementsByTagName('input');
for (var i = 0; i < elems.length; ++i) {
// for each input look at only the ones with the class you are intrested in
if((elems[i].getAttribute('class') === className || elems[i].getAttribute('className') === className) && elems[i].checked){
// check if you need to add ? or & infront of a query part
e.href+=(!i && e.href.indexOf('?')<0)?'?':'&';
// append elements name and value to the query
e.href+=elems[i].name+'='+encodeURIComponent(elems[i].value);
}
}
return true;
}
在editdoc.php中使用$ _GET ['name_of_input_element']获取php的值