我发现这个链接非常有用
但是,我现在想做的是重用这个 id 来为它实际循环的每个文本框做一些修剪功能。我试过这段代码:
<html>
<head>
<?php echo $this->Html->script("jquery-1.4.3.min"); ?>
</head>
<body>
<?php
echo $content_for_layout;
?>
<script type="text/javascript">
$(document).ready(function () {
// alert('JQuery is succesfully included');
/* $(':submit').click(function(){
<?php if(($this->request->controller=='members')&&($this->action=='register')):?>
//alert('well');
var some = $.trim($(":text").val());
alert(some);
<?php endif; ?>
});
*/
$(':submit').click(function(){
$('form input[type="text"]').each(function(){
//get value of id of textbox here
var id = $(this).attr('id');
var some = $.trim($((this).attr('id')).val());
alert(some);
});
});
});
</script>
</body>
</html>
但它不会弹出警报框。