大家好我是jQuery的新手。假设我有两个HTML输入字段,即#input2
和#input
。在#more
1附近,我添加了另一个按钮(#input1
)。当我点击#more
按钮#input2
时,是否可能对每个{{1}}显示?如何在jQuery中完成?
答案 0 :(得分:0)
以下是您开始使用的示例代码。根据您的需要进行修改,
function returnFullHtml(){
$days = json_decode(file_get_contents('json_file'));// now you got the array what you shhown in your question input
unset($days[0]);
$html = '<table class="table">
<thead>
<tr>
<th> Title </th>
<th>Content</th>
<th>Date</th>
</tr>
</thead>
<tbody>';
foreach($days as $day){
$html .= '<tr><td>'. $day[0] .'</td><td>' . $day[1] .'</td><td>' . $day[2] .'</td></tr>';
}
$html .= '</tbody></table>';
return $html;
}
&#13;
$("#btn1").click(function(){
$('body').append('<br><br><input type="text" />');
});
&#13;
答案 1 :(得分:0)
尝试这样的事情
{{1}}
{{1}}