質問編集履歴

1

js内容の更新

2016/08/28 03:37

投稿

shikasama
shikasama

スコア163

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
 
4
4
 
5
+ asp.net mvc4 ,C#でプロジェクトの改修をしています.
6
+
5
7
  外部jsファイルから別の外部jsファイルの関数を呼び出したいです,
8
+
9
+ ご教示ください.
10
+
11
+
6
12
 
7
13
 
8
14
 
@@ -10,20 +16,62 @@
10
16
 
11
17
 
12
18
 
19
+
20
+
21
+ ```javascript
22
+
13
- hoge.js
23
+ ###hoge.js
24
+
25
+ function hogefunction(form) {
26
+
27
+ document.write("<script type='text/javascript' src='piyo.js'></script>");
28
+
29
+ window.onload = function(){piyofunction(form, url);};
30
+
31
+ }
32
+
33
+ ```
14
34
 
15
35
 
16
36
 
17
- function hogefunction() {
37
+ 詳しいコードについては会社からでないと見れないので今はわかりません.
18
38
 
19
- document.write("<script type='text/javascript' src='piyo.js'></script>");
39
+ 申し訳ありません.
20
40
 
41
+ 覚えている限り下記に示します.
42
+
43
+
44
+
45
+ ```javascript
46
+
21
- window.onload = function(){piyofunction();};
47
+ function piyo.js(form,url) {
48
+
49
+ // フォームとurlを指定してwindow.openでurl先を開く処理.
50
+
51
+ window.open(url);
22
52
 
23
53
  }
24
54
 
55
+ ```
25
56
 
57
+ hoge.jsを使用しているhtmlは
26
58
 
59
+ ```html
27
60
 
61
+ <head>
28
62
 
63
+ // 略
64
+
65
+ <script type="text/javascript" src="../Scripts/hoge.js"></script>
66
+
67
+ </head>
68
+
29
- ご教示ください.
69
+ <body>
70
+
71
+ // 略
72
+
73
+ <input type="button" value="button" onClick="hogefunction(document.forms[0], '../Views/a.cshtml')">
74
+
75
+ </body>
76
+
77
+ ```