我需要从viewbag中检索字符串值并使用javascript函数附加它。
<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand(@ViewBag.Address1+'/io.cgi?DOA1=20');">
我在此模式下从控制器加载ViewBag值:
ViewBag.Address1 = ConfigurationManager.AppSettings["Cucina1Address"];
我在onclick中需要的结果如下:
<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand('192.168.0.1/io.cgi?DOA2=20');">
由于
答案 0 :(得分:0)
您可以尝试以下操作:
<input type="button" value="Open" id="relay1Cuc1" onclick="newAJAXCommand('@(ViewBag.Address1)/io.cgi?DOA2=20');">