我有一个用C#编写的Winforms应用程序。在Winform中只是一个Webbrowser控件,它显示了一个简单的html页面。
该页面如下所示
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script type="text/javascript">
$(function() {
$("#selectStores").selectmenu();
});
</script>
</head>
<body>
<div class="demo">
<div class="login-content">
<div class="username">
<div class="input-field">
<input type="hidden" class="inputfield" id="store" name="store">
<input type="text" class="inputfield" name="name" id="name">
</div>
</div>
<div class="password">
<div class="input-field">
<input type="text" class="inputfield" name="password">
</div>
<div id="chooseStoreLocation">
<select id="selectStores">
<option>20000</option>
</select>
</div>
</div>
<div class="password">
<div class="login-button">
<input class="button-short" type ="submit">
</div>
</div>
</div>
</div>
</body>
</html>
问题是我在启动应用程序时收到错误消息。
这里的错误似乎出现$("#selectStores").selectmenu();
错误只是说明http://code.jquery.com/jquery-1.11.3.js
中第0列第0行发生了错误我的问题是为什么它在chrome和普通IE中工作但不能用于我的webbrowser控件并且有办法解决它吗?
修改:
我在我的webbrowser控件中尝试了我获得示例(https://jqueryui.com/selectmenu/#custom_render)的网站,它就像魅力一样。所以它应该正常工作,但我做错了