我有这个:
<div class="five columns">
<a class="button small primary right" style="margin-top: 30px;">
Опубликовать выбранное
</a>
我有这个:
<td>
<p><input type="checkbox" name="checkBox"/></p>
</td>
我需要以下内容:如果我点击按钮并选中其中一些复选框,则会执行一些操作。我怎么能这样做?
它在FTL文件中
答案 0 :(得分:0)
jQuery(document).ready(function{
jQuery(".button").click(function(){
//your action
})
if(jQuery('td checkbox').is(':checked')){
//your action
}
});
希望这会对你有所帮助