我正在尝试使用MVC在Visual Studio 2017 .NET中创建一个网页。我已插入3 radiobuttons
但不是这样显示,它们只是作为线条出现,它们也不是可选择的。我尝试在另一台计算机上运行相同的项目并面临同样的问题。代码如下。
<div id="SubjectType">
Core:<input type="radio" name="Subjects" value="1" /><br />
PE:<input type="radio" name="Subjects" value="2" /><br />
OE:<input type="radio" name="Subjects" value="3" /><br />
</div>
这是一个.cshtml页面。
我也尝试使用@Html.RadioButton
和@Html.RadioButtonFor
无效。进一步挖掘后,我在运行应用程序时打开了Google Chrome开发人员控制台,发现了以下错误
Uncaught SyntaxError:无效或意外的令牌jquery-1.10.2.min.js:21
未捕获的ReferenceError:未在jquery-1.10.2.intellisense.js中定义intellisense:15(匿名)@jquery-1.10.2.intellisense.js:15
我尝试按照this question中给出的答案,但在“工具”窗口中找不到“参考”小节。
This is a screenshot. 'Core', 'PE', and 'OE' are supposed to be in the form of radiobuttons
我真的不知道该怎么做。有人可以帮忙吗?
答案 0 :(得分:0)
也许你的id =&#34; SubjectType&#34;问题是你能展示你关于SubjectType的代码吗?