@Url.Content in separate javascript file using ASPNET MVC 3 and Razor

前端 未结 2 876
独厮守ぢ
独厮守ぢ 2020-12-08 03:26

I was using this

if (ret = 1)
    iconType = new google.maps.MarkerImage(\'@Url.Content(\"~/Content/images/image.png\")\');
else if (ret = 2)
    iconType =          


        
2条回答
  •  半阙折子戏
    2020-12-08 03:49

    I usually put a block like this in the beginning of the page:

    
    

    And then i refer to the ROOT variable in javascript:

    if (ret = 1)
        iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image.png');
    else if (ret = 2)
        iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image2.png');
    else if (ret = 3)
        iconType = new google.maps.MarkerImage(ROOT + '/Content/images/image3.png")');
    

提交回复
热议问题