博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net core mvc 中在C# 代码中写 js 或html 文本
阅读量:5076 次
发布时间:2019-06-12

本文共 829 字,大约阅读时间需要 2 分钟。

https://blog.csdn.net/orichisonic/article/details/62046621

 

使用<text>这个伪元素来强制Razor从编译模式返回到内容模式:

 

@foreach (
var
item
in
Model) {
    
<text>
      
var
markerlatLng =
new
google.maps.LatLng(@(Model.Latitude), @(Model.Longitude));
      
var
title =
'@(Model.Title)'
;
      
var
description =
'@(Model.Description)'
;
      
var
contentString =
'<h3>'
+ title +
'</h3>'
+
'<p>'
+ description +
'</p>'
  
      
var
infowindow =
new
google.maps.InfoWindow({
          
content: contentString
      
});
  
      
var
marker =
new
google.maps.Marker({
          
position: latLng,
          
title: title,
          
map: map,
          
draggable:
false
      
});
  
      
google.maps.event.addListener(marker,
'click'
,
function
() {
          
infowindow.open(map, marker);
      
});
  
   
</text>
      
}
</script>

--------------------- 本文来自 蓝色水 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/orichisonic/article/details/62046621?utm_source=copy

转载于:https://www.cnblogs.com/LuoEast/p/9732291.html

你可能感兴趣的文章
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>
LinkedList源码分析
查看>>
TF-IDF原理
查看>>
用JS制作博客页面背景随滚动渐变的效果
查看>>
JavaScript的迭代函数与迭代函数的实现
查看>>
一步步教你学会browserify
查看>>
Jmeter入门实例
查看>>
亲近用户—回归本质
查看>>
中文脏话识别的解决方案
查看>>
CSS之不常用但重要的样式总结
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>