1、TP5.1编辑页面所属分类(项目)下拉列表显示当前分类
(1)edit.html编辑页面
<option value="{$sort.id}"
{if $office.sort == $sort.id}
selected="selected"
{/if}
>{$sort.title}</option>
image.png
后台方法.png
(2)用jq来完成
<script type="text/javascript">
$(function(){
$("select").find("option[value='{$office.sort}']").attr('selected', 'selected');
})
</script>
没有改动通过JQ来比对添加.png
image.png
网友评论