<script src=”/js/jquery.qrcode-0.11.0.min.js”></script>
<script type=”text/javascript”>
$(function () {
$(“#qrcode”).qrcode({
//render: “table”, //table方式
width: 200, //宽度
height: 200, //高度
text: “http://localhost:6158/News/@(Model.CategoryId)/@(Model.Id).shtml” //任意内容
});
})
</script>